POST api/Bas/GetPageStudent

列表

Request Information

URI Parameters

None.

Body Parameters

GetPageStudentCommand
NameDescriptionTypeAdditional information
StudentName

string

None.

StudentCode

string

None.

OrgId

string

None.

Grade

integer

None.

ClassId

string

None.

IsThree

integer

None.

IsBorrow

integer

None.

IsSpecia

integer

None.

IsScience

integer

None.

IsForeign

integer

None.

Status

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

OrderBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StudentName": "sample string 1",
  "StudentCode": "sample string 2",
  "OrgId": "sample string 3",
  "Grade": 1,
  "ClassId": "sample string 4",
  "IsThree": 1,
  "IsBorrow": 1,
  "IsSpecia": 1,
  "IsScience": 1,
  "IsForeign": 1,
  "Status": 1,
  "PageIndex": 5,
  "PageSize": 6,
  "OrderBy": "sample string 7"
}

text/xml

Sample:
<GetPageStudentCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ems.Domain.Bas.Commands">
  <ClassId>sample string 4</ClassId>
  <Grade>1</Grade>
  <IsBorrow>1</IsBorrow>
  <IsForeign>1</IsForeign>
  <IsScience>1</IsScience>
  <IsSpecia>1</IsSpecia>
  <IsThree>1</IsThree>
  <OrderBy>sample string 7</OrderBy>
  <OrgId>sample string 3</OrgId>
  <PageIndex>5</PageIndex>
  <PageSize>6</PageSize>
  <Status>1</Status>
  <StudentCode>sample string 2</StudentCode>
  <StudentName>sample string 1</StudentName>
</GetPageStudentCommand>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetPageStudentCommand'.

Response Information

Resource Description

ServiceResult
NameDescriptionTypeAdditional information
RetCode

integer

None.

Msg

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "RetCode": 1,
  "Msg": "sample string 2",
  "Result": {}
}

text/xml

Sample:
<ServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tdf.Utils.Networking">
  <Msg>sample string 2</Msg>
  <Result />
  <RetCode>1</RetCode>
</ServiceResult>