POST api/retest/ChangeReTestAuditState
试题审核
Request Information
URI Parameters
None.
Body Parameters
ReTestAuditStateDtoName | Description | Type | Additional information |
---|---|---|---|
RtrId |
审核题库 |
integer |
None. |
RetestId |
审核试题 |
globally unique identifier |
None. |
Message |
审核消息 |
string |
None. |
AuditType |
审核状态 |
AuditState |
None. |
RetestIds |
审核试题 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "RtrId": 1, "RetestId": "f75dd17b-fb93-4a86-bc16-bd7adff2b0a5", "Message": "sample string 3", "AuditType": 1, "RetestIds": [ "97ed997f-7474-44b4-a341-1e30018925aa", "30113cf5-619b-4083-a651-d8fcaf72533e" ] }
text/html
Sample:
{"RtrId":1,"RetestId":"f75dd17b-fb93-4a86-bc16-bd7adff2b0a5","Message":"sample string 3","AuditType":1,"RetestIds":["97ed997f-7474-44b4-a341-1e30018925aa","30113cf5-619b-4083-a651-d8fcaf72533e"]}
application/xml, text/xml
Sample:
<ReTestAuditStateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <AuditType>初始状态</AuditType> <Message>sample string 3</Message> <RetestId>f75dd17b-fb93-4a86-bc16-bd7adff2b0a5</RetestId> <RetestIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>97ed997f-7474-44b4-a341-1e30018925aa</d2p1:guid> <d2p1:guid>30113cf5-619b-4083-a651-d8fcaf72533e</d2p1:guid> </RetestIds> <RtrId>1</RtrId> </ReTestAuditStateDto>
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});