POST api/discussreviews/discussreviewMark
疑难批阅
Request Information
URI Parameters
None.
Body Parameters
TeacherDiscussInfoName | Description | Type | Additional information |
---|---|---|---|
StuId |
学号 |
string |
None. |
PaperId |
试卷编号 |
globally unique identifier |
None. |
ReTestId |
试题编号 |
globally unique identifier |
None. |
OrginUserId |
推送老师是谁 |
integer |
None. |
UserId |
批阅的老师编号 |
integer |
None. |
Adopt |
是否采纳 |
boolean |
None. |
Score |
评分 |
decimal number |
None. |
PostilPath |
上传文件 |
string |
None. |
Remark |
备注 |
string |
None. |
UpdatedTime |
更新时间 |
date |
None. |
CreatedTime |
创建时间 |
date |
None. |
Request Formats
application/json, text/json
Sample:
{ "StuId": "sample string 1", "PaperId": "366dd048-1cb8-415f-b2ee-d887d95ca93d", "ReTestId": "c84cebe1-5ec6-4648-a248-8863c3c07130", "OrginUserId": 1, "UserId": 4, "Adopt": true, "Score": 6.1, "PostilPath": "sample string 7", "Remark": "sample string 8", "UpdatedTime": "2024-09-25T00:06:05.187228+08:00", "CreatedTime": "2024-09-25T00:06:05.187228+08:00" }
text/html
Sample:
{"StuId":"sample string 1","PaperId":"366dd048-1cb8-415f-b2ee-d887d95ca93d","ReTestId":"c84cebe1-5ec6-4648-a248-8863c3c07130","OrginUserId":1,"UserId":4,"Adopt":true,"Score":6.1,"PostilPath":"sample string 7","Remark":"sample string 8","UpdatedTime":"2024-09-25T00:06:05.187228+08:00","CreatedTime":"2024-09-25T00:06:05.187228+08:00"}
application/xml, text/xml
Sample:
<TeacherDiscussInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Data"> <Adopt>true</Adopt> <CreatedTime>2024-09-25T00:06:05.187228+08:00</CreatedTime> <OrginUserId>1</OrginUserId> <PaperId>366dd048-1cb8-415f-b2ee-d887d95ca93d</PaperId> <PostilPath>sample string 7</PostilPath> <ReTestId>c84cebe1-5ec6-4648-a248-8863c3c07130</ReTestId> <Remark>sample string 8</Remark> <Score>6.1</Score> <StuId>sample string 1</StuId> <UpdatedTime>2024-09-25T00:06:05.187228+08:00</UpdatedTime> <UserId>4</UserId> </TeacherDiscussInfo>
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});