POST api/retestrepository/SaveLablesForRetestRepository

保存标签到特定题库

Request Information

URI Parameters

None.

Body Parameters

SaveReTestLabelForReTestRePositoryInputDto
NameDescriptionTypeAdditional information
ReTestRePositoryId

题库编号

integer

None.

LabelName

标签名称

string

None.

LabelValue

标签值

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReTestRePositoryId": 1,
  "LabelName": "sample string 2",
  "LabelValue": "sample string 3"
}

text/html

Sample:
{"ReTestRePositoryId":1,"LabelName":"sample string 2","LabelValue":"sample string 3"}

application/xml, text/xml

Sample:
<SaveReTestLabelForReTestRePositoryInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <LabelName>sample string 2</LabelName>
  <LabelValue>sample string 3</LabelValue>
  <ReTestRePositoryId>1</ReTestRePositoryId>
</SaveReTestLabelForReTestRePositoryInputDto>

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