POST api/PaperReview/AuditNext
审核下一个
Request Information
URI Parameters
None.
Body Parameters
AuditNextQueryDtoName | Description | Type | Additional information |
---|---|---|---|
PaperId |
试卷编号 |
globally unique identifier |
None. |
ClassIds |
教学班级编号 |
Collection of globally unique identifier |
None. |
StructIds |
行政班级编号 |
Collection of integer |
None. |
SortField |
排序字段 |
string |
None. |
Sort |
排序 |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "PaperId": "a43a893e-b220-49ac-9712-b96526663674", "ClassIds": [ "7b29cdbc-b142-46ee-b60e-0ec1e731035b", "5e532f03-d6e5-4884-8dfe-a37976795ba2" ], "StructIds": [ 1, 2 ], "SortField": "sample string 2", "Sort": true }
text/html
Sample:
{"PaperId":"a43a893e-b220-49ac-9712-b96526663674","ClassIds":["7b29cdbc-b142-46ee-b60e-0ec1e731035b","5e532f03-d6e5-4884-8dfe-a37976795ba2"],"StructIds":[1,2],"SortField":"sample string 2","Sort":true}
application/xml, text/xml
Sample:
<AuditNextQueryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <ClassIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>7b29cdbc-b142-46ee-b60e-0ec1e731035b</d2p1:guid> <d2p1:guid>5e532f03-d6e5-4884-8dfe-a37976795ba2</d2p1:guid> </ClassIds> <PaperId>a43a893e-b220-49ac-9712-b96526663674</PaperId> <Sort>true</Sort> <SortField>sample string 2</SortField> <StructIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </StructIds> </AuditNextQueryDto>
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"});