POST api/homework/examend
提交作业接口
Request Information
URI Parameters
None.
Body Parameters
考试过程记录信息
ExaminationProcessRecordDtoName | Description | Type | Additional information |
---|---|---|---|
Token |
考试凭据(登入考试系统时颁发,该凭据是以后每次提交答题过程的唯一依据) |
globally unique identifier |
None. |
PaperId |
试卷编号 |
globally unique identifier |
None. |
StuId |
学号 |
string |
None. |
AnswerArray |
答题结果集 |
Collection of AnswerArray |
None. |
MarkArray |
试卷考题标记数组 |
Collection of globally unique identifier |
None. |
TimeConsuming |
已耗时 |
integer |
None. |
AddTimeLength |
增加该考生考试时长 |
integer |
None. |
OwnEndTime |
指定结束时间 |
date |
None. |
AutoSubmit |
当该值为真时表示自动提交 |
boolean |
None. |
AnswerBatchId |
答题批次编号 |
globally unique identifier |
None. |
RequireCamera |
是否需要开启拍照功能 |
boolean |
None. |
BeginAnswerTime |
开始作答时间 |
date |
None. |
ScreenCutoutNum |
切屏次数 |
integer |
None. |
ScreenCutoutPicture |
切屏图片信息 |
string |
None. |
VideoRecord |
录屏文件 |
string |
None. |
ObjectiveConfirmed |
客观题已确认 |
boolean |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
text/html
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/xml
Sample:
Sample not available.
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});