GET api/ExamPlan/GetExamTimeRangeTeacherPlace?begin={begin}&examDate={examDate}&examTimeRangeId={examTimeRangeId}

查询监考人员信息

Request Information

URI Parameters

NameDescriptionTypeAdditional information
begin

date

Required

examDate

date

Required

examTimeRangeId

integer

Required

Body Parameters

None.

Response Information

Resource Description

查询监考人员信息

JsonRtnDtoOfInvigilatorOutputDto[]
NameDescriptionTypeAdditional information
Msg

string

None.

State

RtnState

None.

Data

Collection of InvigilatorOutputDto

None.

Response Formats

application/json, text/json

Sample:
{
  "Msg": "sample string 1",
  "State": 100,
  "Data": [
    {
      "TeaCode": "sample string 1",
      "TeaName": "sample string 2",
      "Allocated": true,
      "ExamPlaceId": 1,
      "HasAllocatNum": 4
    },
    {
      "TeaCode": "sample string 1",
      "TeaName": "sample string 2",
      "Allocated": true,
      "ExamPlaceId": 1,
      "HasAllocatNum": 4
    }
  ]
}

text/html

Sample:
{"Msg":"sample string 1","State":100,"Data":[{"TeaCode":"sample string 1","TeaName":"sample string 2","Allocated":true,"ExamPlaceId":1,"HasAllocatNum":4},{"TeaCode":"sample string 1","TeaName":"sample string 2","Allocated":true,"ExamPlaceId":1,"HasAllocatNum":4}]}

application/xml, text/xml

Sample:
<JsonRtnDtoOfArrayOfInvigilatorOutputDtov3CTEUQJ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <Data>
    <InvigilatorOutputDto>
      <Allocated>true</Allocated>
      <HasAllocatNum>4</HasAllocatNum>
      <TeaCode>sample string 1</TeaCode>
      <TeaName>sample string 2</TeaName>
    </InvigilatorOutputDto>
    <InvigilatorOutputDto>
      <Allocated>true</Allocated>
      <HasAllocatNum>4</HasAllocatNum>
      <TeaCode>sample string 1</TeaCode>
      <TeaName>sample string 2</TeaName>
    </InvigilatorOutputDto>
  </Data>
  <Msg>sample string 1</Msg>
  <State>Display</State>
</JsonRtnDtoOfArrayOfInvigilatorOutputDtov3CTEUQJ>

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

Sample:
/**/ typeof  === 'function' && ({"Msg":"sample string 1","State":100,"Data":[{"TeaCode":"sample string 1","TeaName":"sample string 2","Allocated":true,"ExamPlaceId":1,"HasAllocatNum":4},{"TeaCode":"sample string 1","TeaName":"sample string 2","Allocated":true,"ExamPlaceId":1,"HasAllocatNum":4}]});