POST api/answercard/fullstudentanswer
填充答案
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": "2863b132-077c-4638-9fd2-6cfb143e538a", "PaperId": "ac3aa0c2-0335-4dbe-86df-772f044f3699", "StuId": "sample string 3", "TempAnswer": "sample string 4", "TempMark": "sample string 5", "TimeConsuming": 6, "AnswerBatchId": "4a6a8503-175f-4570-986c-52052d582975", "Photos": "sample string 8", "SubmitByCutScreen": true }
text/html
Sample:
{"Token":"2863b132-077c-4638-9fd2-6cfb143e538a","PaperId":"ac3aa0c2-0335-4dbe-86df-772f044f3699","StuId":"sample string 3","TempAnswer":"sample string 4","TempMark":"sample string 5","TimeConsuming":6,"AnswerBatchId":"4a6a8503-175f-4570-986c-52052d582975","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>4a6a8503-175f-4570-986c-52052d582975</AnswerBatchId> <CanDelay>true</CanDelay> <PaperId>ac3aa0c2-0335-4dbe-86df-772f044f3699</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>2863b132-077c-4638-9fd2-6cfb143e538a</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});