POST api/discussreviews/pushtootherteacher
疑难批阅推送
Request Information
URI Parameters
None.
Body Parameters
TeacherDiscussInfoPushDtoName | Description | Type | Additional information |
---|---|---|---|
StuId |
学号 |
string |
None. |
PaperId |
试卷编号 |
globally unique identifier |
None. |
ReTestId |
试题编号 |
globally unique identifier |
None. |
UserIds |
被推老师编号 |
Collection of integer |
None. |
Score |
评分 |
decimal number |
None. |
PostilPath |
上传文件 |
string |
None. |
Remark |
备注 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "StuId": "sample string 1", "PaperId": "c3d48506-c33b-471d-abb9-9b2b9e53462a", "ReTestId": "10670eb8-3d11-4a04-8378-774669130568", "UserIds": [ 1, 2 ], "Score": 4.1, "PostilPath": "sample string 5", "Remark": "sample string 6" }
text/html
Sample:
{"StuId":"sample string 1","PaperId":"c3d48506-c33b-471d-abb9-9b2b9e53462a","ReTestId":"10670eb8-3d11-4a04-8378-774669130568","UserIds":[1,2],"Score":4.1,"PostilPath":"sample string 5","Remark":"sample string 6"}
application/xml, text/xml
Sample:
<TeacherDiscussInfoPushDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <PaperId>c3d48506-c33b-471d-abb9-9b2b9e53462a</PaperId> <PostilPath>sample string 5</PostilPath> <ReTestId>10670eb8-3d11-4a04-8378-774669130568</ReTestId> <Remark>sample string 6</Remark> <Score>4.1</Score> <StuId>sample string 1</StuId> <UserIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:int>1</d2p1:int> <d2p1:int>2</d2p1:int> </UserIds> </TeacherDiscussInfoPushDto>
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});