POST api/retestrepository/DelLabelsStatisticByReTestIds
删除题库下特定试题标签
Request Information
URI Parameters
None.
Body Parameters
DelReTestLabelForReTestIdsInputDtoName | Description | Type | Additional information |
---|---|---|---|
RtrId |
题库编号 |
integer |
None. |
LabelName |
标签名称 |
string |
None. |
labelValue |
标签值 |
string |
None. |
ReTestIdSet |
试题编号 |
Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "RtrId": 1, "LabelName": "sample string 2", "labelValue": "sample string 3", "ReTestIdSet": [ "c54f7095-e3b7-4a0e-926a-9a291751f4bd", "e9633d74-21fa-4956-b882-38ab5a309393" ] }
text/html
Sample:
{"RtrId":1,"LabelName":"sample string 2","labelValue":"sample string 3","ReTestIdSet":["c54f7095-e3b7-4a0e-926a-9a291751f4bd","e9633d74-21fa-4956-b882-38ab5a309393"]}
application/xml, text/xml
Sample:
<DelReTestLabelForReTestIdsInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services"> <LabelName>sample string 2</LabelName> <ReTestIdSet xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:guid>c54f7095-e3b7-4a0e-926a-9a291751f4bd</d2p1:guid> <d2p1:guid>e9633d74-21fa-4956-b882-38ab5a309393</d2p1:guid> </ReTestIdSet> <RtrId>1</RtrId> <labelValue>sample string 3</labelValue> </DelReTestLabelForReTestIdsInputDto>
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});