POST api/testpaper/allotstutoexamplan
考务:分配学生到考场
Request Information
URI Parameters
None.
Body Parameters
参数
ExamSubjectDtoName | Description | Type | Additional information |
---|---|---|---|
ExamPlanId |
考务ID |
globally unique identifier |
None. |
SubjectIdList |
考试科目ID集合 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ExamPlanId": "7dd540aa-86b7-4aae-b77f-517316733bf6", "SubjectIdList": [ "9097c069-29a8-43b0-8c4b-9a4475954aea", "608a6e3d-7d61-4b83-b0fc-a5f728859379" ] }
text/html
Sample:
{"ExamPlanId":"7dd540aa-86b7-4aae-b77f-517316733bf6","SubjectIdList":["9097c069-29a8-43b0-8c4b-9a4475954aea","608a6e3d-7d61-4b83-b0fc-a5f728859379"]}
application/xml, text/xml
Sample:
<ExamSubjectDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <ExamPlanId>7dd540aa-86b7-4aae-b77f-517316733bf6</ExamPlanId> <SubjectIdList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>9097c069-29a8-43b0-8c4b-9a4475954aea</d2p1:guid> <d2p1:guid>608a6e3d-7d61-4b83-b0fc-a5f728859379</d2p1:guid> </SubjectIdList> </ExamSubjectDto>
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});