POST api/answercard/examendandmarkscore
交卷
Request Information
URI Parameters
None.
Body Parameters
考试过程更新实体
ExaminationProcessRecordInputDtoName | Description | Type | Additional information |
---|---|---|---|
Token |
考试凭据(登入考试系统时颁发,该凭据是以后每次提交答题过程的唯一依据) |
globally unique identifier |
None. |
PaperId |
试卷编号 |
globally unique identifier |
None. |
StuId |
学号 |
string |
None. |
TempAnswer |
临时答案Json串 |
string |
None. |
TempMark |
临时试题标记Json串 |
string |
None. |
TimeConsuming |
已耗时 |
integer |
None. |
AnswerBatchId |
答题批次编号 |
globally unique identifier |
None. |
Photos |
照片信息(考试过程中的抓拍) |
string |
None. |
SubmitByCutScreen |
切屏交卷 |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "Token": "a968832e-5952-4dfd-a1fa-2aef3fd53c7c", "PaperId": "b079323e-52c0-4daa-a672-4986c95826bd", "StuId": "sample string 3", "TempAnswer": "sample string 4", "TempMark": "sample string 5", "TimeConsuming": 6, "AnswerBatchId": "7c5a31bf-478d-4af5-b7e8-17de3b398b69", "Photos": "sample string 8", "SubmitByCutScreen": true }
text/html
Sample:
{"Token":"a968832e-5952-4dfd-a1fa-2aef3fd53c7c","PaperId":"b079323e-52c0-4daa-a672-4986c95826bd","StuId":"sample string 3","TempAnswer":"sample string 4","TempMark":"sample string 5","TimeConsuming":6,"AnswerBatchId":"7c5a31bf-478d-4af5-b7e8-17de3b398b69","Photos":"sample string 8","SubmitByCutScreen":true}
application/xml, text/xml
Sample:
<ExaminationProcessRecordInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <AnswerBatchId>7c5a31bf-478d-4af5-b7e8-17de3b398b69</AnswerBatchId> <CanDelay>true</CanDelay> <PaperId>b079323e-52c0-4daa-a672-4986c95826bd</PaperId> <Photos>sample string 8</Photos> <StuId>sample string 3</StuId> <SubmitByCutScreen>true</SubmitByCutScreen> <TempAnswer>sample string 4</TempAnswer> <TempMark>sample string 5</TempMark> <TimeConsuming>6</TimeConsuming> <Token>a968832e-5952-4dfd-a1fa-2aef3fd53c7c</Token> </ExaminationProcessRecordInputDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
交卷
JsonRtnDtoOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": true }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":true}
application/xml, text/xml
Sample:
<JsonRtnDtoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data>true</Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfboolean>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":true});