POST api/testpaper/checkbatchknowledgeconsistency

检查试卷知识点一致性

Request Information

URI Parameters

None.

Body Parameters

ClassBatchConsistency
NameDescriptionTypeAdditional information
paperIds

试卷编号

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "paperIds": [
    "8d23a9fd-c36a-404c-abb2-4c466f74a5e9",
    "2021c04a-e792-4ba5-8fdc-008d51b8c5f2"
  ]
}

text/html

Sample:
{"paperIds":["8d23a9fd-c36a-404c-abb2-4c466f74a5e9","2021c04a-e792-4ba5-8fdc-008d51b8c5f2"]}

application/xml, text/xml

Sample:
<ClassBatchConsistency xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <paperIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>8d23a9fd-c36a-404c-abb2-4c466f74a5e9</d2p1:guid>
    <d2p1:guid>2021c04a-e792-4ba5-8fdc-008d51b8c5f2</d2p1:guid>
  </paperIds>
</ClassBatchConsistency>

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