GET api/retestrepository/LoadLabelsStatisticByReTestId?rtrId={rtrId}&testId={testId}

加载题库下单个试题的标签

Request Information

URI Parameters

NameDescriptionTypeAdditional information
rtrId

integer

Required

testId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

加载题库下单个试题的标签

JsonRtnDtoOfIEnumerableOfReTestLables
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of ReTestLables

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "ReTestID": "c72601bb-4857-481a-a6cd-fb2652dbe6a0",
      "ReTestRepositoryId": 2,
      "LableName": "sample string 3",
      "LableValue": "sample string 4"
    },
    {
      "ReTestID": "c72601bb-4857-481a-a6cd-fb2652dbe6a0",
      "ReTestRepositoryId": 2,
      "LableName": "sample string 3",
      "LableValue": "sample string 4"
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"ReTestID":"c72601bb-4857-481a-a6cd-fb2652dbe6a0","ReTestRepositoryId":2,"LableName":"sample string 3","LableValue":"sample string 4"},{"ReTestID":"c72601bb-4857-481a-a6cd-fb2652dbe6a0","ReTestRepositoryId":2,"LableName":"sample string 3","LableValue":"sample string 4"}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfReTestLablesmEDjlcEG xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BJ.Data">
    <d2p1:ReTestLables>
      <d2p1:LableName>sample string 3</d2p1:LableName>
      <d2p1:LableValue>sample string 4</d2p1:LableValue>
      <d2p1:ReTestID>c72601bb-4857-481a-a6cd-fb2652dbe6a0</d2p1:ReTestID>
      <d2p1:ReTestRepositoryId>2</d2p1:ReTestRepositoryId>
    </d2p1:ReTestLables>
    <d2p1:ReTestLables>
      <d2p1:LableName>sample string 3</d2p1:LableName>
      <d2p1:LableValue>sample string 4</d2p1:LableValue>
      <d2p1:ReTestID>c72601bb-4857-481a-a6cd-fb2652dbe6a0</d2p1:ReTestID>
      <d2p1:ReTestRepositoryId>2</d2p1:ReTestRepositoryId>
    </d2p1:ReTestLables>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfReTestLablesmEDjlcEG>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"ReTestID":"c72601bb-4857-481a-a6cd-fb2652dbe6a0","ReTestRepositoryId":2,"LableName":"sample string 3","LableValue":"sample string 4"},{"ReTestID":"c72601bb-4857-481a-a6cd-fb2652dbe6a0","ReTestRepositoryId":2,"LableName":"sample string 3","LableValue":"sample string 4"}]});