POST api/teachingclass/deletestudentteachingclass

删除指定学生的多个教学班级

Request Information

URI Parameters

None.

Body Parameters

PaperClassStuTeachingRemoveDto
NameDescriptionTypeAdditional information
TeachingClassIds

教学班级编号

Collection of globally unique identifier

None.

StudentId

要删除的学生编号集合

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TeachingClassIds": [
    "582d6f2e-836f-45b4-9cc5-15b41fc7a3b6",
    "6a102c47-11f9-4b1b-814a-2fc60667f1b1"
  ],
  "StudentId": "sample string 1"
}

text/html

Sample:
{"TeachingClassIds":["582d6f2e-836f-45b4-9cc5-15b41fc7a3b6","6a102c47-11f9-4b1b-814a-2fc60667f1b1"],"StudentId":"sample string 1"}

application/xml, text/xml

Sample:
<PaperClassStuTeachingRemoveDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BJ.Services">
  <StudentId>sample string 1</StudentId>
  <TeachingClassIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>582d6f2e-836f-45b4-9cc5-15b41fc7a3b6</d2p1:guid>
    <d2p1:guid>6a102c47-11f9-4b1b-814a-2fc60667f1b1</d2p1:guid>
  </TeachingClassIds>
</PaperClassStuTeachingRemoveDto>

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