POST api/ExamPlan/ReSetArrangement

场次下指定考场重排

Request Information

URI Parameters

None.

Body Parameters

ReSetArrangementInputDto
NameDescriptionTypeAdditional information
SubjectId

排考科目

globally unique identifier

None.

ExamPlanId

考务编号

globally unique identifier

None.

ExamTimeRangeId

场次编号

integer

None.

ArrangementDate

排考日期

date

None.

ClassNames

重排班级

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "SubjectId": "9d774c06-5a2b-4209-abf6-8e2d2f881416",
  "ExamPlanId": "ba4d9a43-a58e-4b01-bb6a-37dc6905c10e",
  "ExamTimeRangeId": 3,
  "ArrangementDate": "2024-07-19T15:28:29.2189355+08:00",
  "ClassNames": [
    "sample string 1",
    "sample string 2"
  ]
}

text/html

Sample:
{"SubjectId":"9d774c06-5a2b-4209-abf6-8e2d2f881416","ExamPlanId":"ba4d9a43-a58e-4b01-bb6a-37dc6905c10e","ExamTimeRangeId":3,"ArrangementDate":"2024-07-19T15:28:29.2189355+08:00","ClassNames":["sample string 1","sample string 2"]}

application/xml, text/xml

Sample:
<ReSetArrangementInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <ArrangementDate>2024-07-19T15:28:29.2189355+08:00</ArrangementDate>
  <ClassNames xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ClassNames>
  <ExamPlanId>ba4d9a43-a58e-4b01-bb6a-37dc6905c10e</ExamPlanId>
  <ExamTimeRangeId>3</ExamTimeRangeId>
  <SubjectId>9d774c06-5a2b-4209-abf6-8e2d2f881416</SubjectId>
</ReSetArrangementInputDto>

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