GET api/testpaperstatistic/GetExamActualDifficultyKnowledgeOutput?paperId={paperId}

加载考试实际出题难度知识点

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paperId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

加载考试实际出题难度知识点

JsonRtnDtoOfIEnumerableOfExamActualDifficultyKnowledgeOutput
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of ExamActualDifficultyKnowledgeOutput

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "Difficulty": 1,
      "Knowledge": "sample string 2",
      "TotalScore": 3.1
    },
    {
      "Difficulty": 1,
      "Knowledge": "sample string 2",
      "TotalScore": 3.1
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"Difficulty":1,"Knowledge":"sample string 2","TotalScore":3.1},{"Difficulty":1,"Knowledge":"sample string 2","TotalScore":3.1}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfExamActualDifficultyKnowledgeOutputv3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <ExamActualDifficultyKnowledgeOutput>
      <Difficulty>1</Difficulty>
      <Knowledge>sample string 2</Knowledge>
      <TotalScore>3.1</TotalScore>
    </ExamActualDifficultyKnowledgeOutput>
    <ExamActualDifficultyKnowledgeOutput>
      <Difficulty>1</Difficulty>
      <Knowledge>sample string 2</Knowledge>
      <TotalScore>3.1</TotalScore>
    </ExamActualDifficultyKnowledgeOutput>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfExamActualDifficultyKnowledgeOutputv3CTEUQJ>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"Difficulty":1,"Knowledge":"sample string 2","TotalScore":3.1},{"Difficulty":1,"Knowledge":"sample string 2","TotalScore":3.1}]});