POST api/Conf/SetTeacherRetestTitle

教师添加自定义答题卡试题说明

Request Information

URI Parameters

None.

Body Parameters

CardTestTitleConfItem
NameDescriptionTypeAdditional information
TestTitle

模板标题

string

None.

ConfType

2.题型,1.题序

ConfType

None.

Request Formats

application/json, text/json

Sample:
{
  "TestTitle": "sample string 1",
  "ConfType": 1
}

text/html

Sample:
{"TestTitle":"sample string 1","ConfType":1}

application/xml, text/xml

Sample:
<CardTestTitleConfItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services.%E5%9F%BA%E6%9C%AC%E4%BF%A1%E6%81%AF.Dto.TitleTpl">
  <ConfType>题序</ConfType>
  <TestTitle>sample string 1</TestTitle>
</CardTestTitleConfItem>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

教师添加自定义答题卡试题说明

JsonRtnDtoOfListOfCardTestTitleConfItem
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of CardTestTitleConfItem

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "TestTitle": "sample string 1",
      "ConfType": 1
    },
    {
      "TestTitle": "sample string 1",
      "ConfType": 1
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"TestTitle":"sample string 1","ConfType":1},{"TestTitle":"sample string 1","ConfType":1}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfCardTestTitleConfItemflMCM3gX 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.Services.%E5%9F%BA%E6%9C%AC%E4%BF%A1%E6%81%AF.Dto.TitleTpl">
    <d2p1:CardTestTitleConfItem>
      <d2p1:ConfType>题序</d2p1:ConfType>
      <d2p1:TestTitle>sample string 1</d2p1:TestTitle>
    </d2p1:CardTestTitleConfItem>
    <d2p1:CardTestTitleConfItem>
      <d2p1:ConfType>题序</d2p1:ConfType>
      <d2p1:TestTitle>sample string 1</d2p1:TestTitle>
    </d2p1:CardTestTitleConfItem>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfCardTestTitleConfItemflMCM3gX>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"TestTitle":"sample string 1","ConfType":1},{"TestTitle":"sample string 1","ConfType":1}]});