GET {version}/User/GetTeacherExamType

获得考试类型

Request Information

URI Parameters

NameDescriptionTypeAdditional information
version

string

None.

Body Parameters

None.

Response Information

Resource Description

ApiResultOfListOfTeacherExamTypeDto
NameDescriptionTypeAdditional information
Code

string

None.

Message

string

None.

Data

Collection of TeacherExamTypeDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "Message": "sample string 2",
  "Data": [
    {
      "ID": "sample string 1",
      "Name": "sample string 2",
      "HasLearningSection": true,
      "HasSubject": true,
      "HasArea": true
    },
    {
      "ID": "sample string 1",
      "Name": "sample string 2",
      "HasLearningSection": true,
      "HasSubject": true,
      "HasArea": true
    }
  ]
}

application/xml, text/xml

Sample:
<ApiResultOfArrayOfTeacherExamTypeDtoEt5DwlUt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TinyFx.Web.Results">
  <Code>sample string 1</Code>
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Eshikao.Models.User">
    <d2p1:TeacherExamTypeDto>
      <d2p1:HasArea>true</d2p1:HasArea>
      <d2p1:HasLearningSection>true</d2p1:HasLearningSection>
      <d2p1:HasSubject>true</d2p1:HasSubject>
      <d2p1:ID>sample string 1</d2p1:ID>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:TeacherExamTypeDto>
    <d2p1:TeacherExamTypeDto>
      <d2p1:HasArea>true</d2p1:HasArea>
      <d2p1:HasLearningSection>true</d2p1:HasLearningSection>
      <d2p1:HasSubject>true</d2p1:HasSubject>
      <d2p1:ID>sample string 1</d2p1:ID>
      <d2p1:Name>sample string 2</d2p1:Name>
    </d2p1:TeacherExamTypeDto>
  </Data>
  <Message>sample string 2</Message>
</ApiResultOfArrayOfTeacherExamTypeDtoEt5DwlUt>