POST api/paperscoremgt/getnextmarkpaper
加载下一个未阅学生
Request Information
URI Parameters
None.
Body Parameters
查找下一个未阅学生
FindNextMarkStudentDtoName | Description | Type | Additional information |
---|---|---|---|
PaperId |
试卷编号 |
globally unique identifier |
None. |
TeachingClassId |
指定阅卷的教学班级 |
globally unique identifier |
None. |
StructureId |
指定阅卷的行政班级 |
integer |
None. |
ReTestSetIds |
指定要阅卷的学生 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "PaperId": "74eb9daa-88eb-4ff8-827b-9fb9b6e3dc4e", "TeachingClassId": "0ba5a8b6-e556-4d86-88b0-6ad5a62da0a1", "StructureId": 2, "ReTestSetIds": [ "1ecd9d04-95a6-4965-b27e-19d6d75b7483", "b79b39bb-faa3-4876-ac64-cf6aac14c547" ] }
text/html
Sample:
{"PaperId":"74eb9daa-88eb-4ff8-827b-9fb9b6e3dc4e","TeachingClassId":"0ba5a8b6-e556-4d86-88b0-6ad5a62da0a1","StructureId":2,"ReTestSetIds":["1ecd9d04-95a6-4965-b27e-19d6d75b7483","b79b39bb-faa3-4876-ac64-cf6aac14c547"]}
application/xml, text/xml
Sample:
<FindNextMarkStudentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <PaperId>74eb9daa-88eb-4ff8-827b-9fb9b6e3dc4e</PaperId> <ReTestSetIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>1ecd9d04-95a6-4965-b27e-19d6d75b7483</d2p1:guid> <d2p1:guid>b79b39bb-faa3-4876-ac64-cf6aac14c547</d2p1:guid> </ReTestSetIds> <StructureId>2</StructureId> <TeachingClassId>0ba5a8b6-e556-4d86-88b0-6ad5a62da0a1</TeachingClassId> </FindNextMarkStudentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
加载下一个未阅学生
JsonRtnDtoOfStringName | Description | Type | Additional information |
---|---|---|---|
Msg | string |
None. |
|
State | RtnState |
None. |
|
Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Msg": "sample string 1", "State": 100, "Data": "sample string 2" }
text/html
Sample:
{"Msg":"sample string 1","State":100,"Data":"sample string 2"}
application/xml, text/xml
Sample:
<JsonRtnDtoOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <Data>sample string 2</Data> <Msg>sample string 1</Msg> <State>Display</State> </JsonRtnDtoOfstring>
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"Msg":"sample string 1","State":100,"Data":"sample string 2"});