POST api/admin/user/list

【管理员】【用户管理】列表

Request Information

URI Parameters

None.

Body Parameters

用户列表请求参数

AdminUserListRequst
NameDescriptionTypeAdditional information
status

状态筛选(选填)

integer

None.

role

角色筛选(选填)

integer

None.

wxNickname

微信昵称筛选(选填)

string

Max length: 100

meMobile

手机号筛选(选填)

string

Max length: 50

meName

真实姓名筛选(选填)

string

Max length: 50

skip

分页偏移量

integer

Range: inclusive between 0 and 10000000

limit

每页条数

integer

Range: inclusive between 1 and 1000

key

搜索关键词

string

Max length: 100

order

排序字段

string

Max length: 50

desc

排序方式

string

Matching regular expression pattern: ^(asc|desc|)$

beginDate

开始时间

string

None.

endDate

结束时间

string

None.

Request Formats

application/json, text/json

Sample:
{
  "status": 1,
  "role": 1,
  "wxNickname": "sample string 1",
  "meMobile": "sample string 2",
  "meName": "sample string 3",
  "skip": 4,
  "limit": 5,
  "key": "sample string 6",
  "order": "sample string 7",
  "desc": "sample string 8",
  "beginDate": "sample string 9",
  "endDate": "sample string 10"
}

Response Information

Resource Description

【管理员】【用户管理】列表

MyResponse
NameDescriptionTypeAdditional information
code

integer

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

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