POST api/ExamPlan/ReSetSeatArrangementByStuCode

重置学生排考信息

Request Information

URI Parameters

None.

Body Parameters

ExamArrangementReSetInputDto
NameDescriptionTypeAdditional information
ExamPlanId

考务编号

globally unique identifier

None.

SubjectId

科目编号

globally unique identifier

None.

ArrangementDate

日期

date

None.

ExamTimeRangeId

批次

integer

None.

StuCodes

学号

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "ExamPlanId": "ea411690-3d59-46b0-8554-df22baa8383e",
  "SubjectId": "33e610f7-bc86-4110-9686-2bcc9630fc96",
  "ArrangementDate": "2024-09-25T00:10:06.4061677+08:00",
  "ExamTimeRangeId": 4,
  "StuCodes": [
    "sample string 1",
    "sample string 2"
  ]
}

text/html

Sample:
{"ExamPlanId":"ea411690-3d59-46b0-8554-df22baa8383e","SubjectId":"33e610f7-bc86-4110-9686-2bcc9630fc96","ArrangementDate":"2024-09-25T00:10:06.4061677+08:00","ExamTimeRangeId":4,"StuCodes":["sample string 1","sample string 2"]}

application/xml, text/xml

Sample:
<ExamArrangementReSetInputDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <ArrangementDate>2024-09-25T00:10:06.4061677+08:00</ArrangementDate>
  <ExamPlanId>ea411690-3d59-46b0-8554-df22baa8383e</ExamPlanId>
  <ExamTimeRangeId>4</ExamTimeRangeId>
  <StuCodes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </StuCodes>
  <SubjectId>33e610f7-bc86-4110-9686-2bcc9630fc96</SubjectId>
</ExamArrangementReSetInputDto>

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