POST api/retestrepository/submitAudit

提交审核

Request Information

URI Parameters

None.

Body Parameters

SubmitAuditDto
NameDescriptionTypeAdditional information
RtrId

题库编号

integer

None.

AuditState

审核状态

AuditState

None.

Message

消息

string

None.

currentIndex

驳回到指定步骤

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RtrId": 1,
  "AuditState": 1,
  "Message": "sample string 2",
  "currentIndex": 3
}

text/html

Sample:
{"RtrId":1,"AuditState":1,"Message":"sample string 2","currentIndex":3}

application/xml, text/xml

Sample:
<SubmitAuditDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <AuditState>初始状态</AuditState>
  <Message>sample string 2</Message>
  <RtrId>1</RtrId>
  <currentIndex>3</currentIndex>
</SubmitAuditDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

提交审核

JsonRtnDtoOfBoolean
NameDescriptionTypeAdditional 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});