POST api/ResultList/GetExpertPageData

Request Information

URI Parameters

None.

Body Parameters

ExpertSearchOption
NameDescriptionTypeAdditional information
name

string

None.

province

string

None.

city

string

None.

county

string

None.

expert_type

string

None.

ranks

string

None.

work_unit

string

None.

userId

integer

None.

page

integer

None.

limit

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 1",
  "province": "sample string 2",
  "city": "sample string 3",
  "county": "sample string 4",
  "expert_type": "sample string 5",
  "ranks": "sample string 6",
  "work_unit": "sample string 7",
  "userId": 1,
  "page": 8,
  "limit": 9
}

application/xml, text/xml

Sample:
<ExpertSearchOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <limit>9</limit>
  <page>8</page>
  <city>sample string 3</city>
  <county>sample string 4</county>
  <expert_type>sample string 5</expert_type>
  <name>sample string 1</name>
  <province>sample string 2</province>
  <ranks>sample string 6</ranks>
  <userId>1</userId>
  <work_unit>sample string 7</work_unit>
</ExpertSearchOption>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResult
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

count

integer

None.

data

Object

None.

otherdata

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "msg": "sample string 2",
  "count": 1,
  "data": {},
  "otherdata": {}
}

application/xml, text/xml

Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fsh.Core.Models.Other">
  <code>1</code>
  <count>1</count>
  <data />
  <msg>sample string 2</msg>
  <otherdata />
</ApiResult>