获取管理员列表
POST
/myauth/web/getAdminList仅账号为admin的用户可以使用此接口,结果中会过滤掉admin本身
请求参数
Header 参数
token
string
必需
登录成功后返回的token
示例值:
123
Body 参数application/json
id
string
ID
精准查询
user
string
账号
模糊查询
qq
string
QQ
模糊查询
regTime
integer
注册时间戳
模糊查询
lastTime
integer
最后登录的时间戳
模糊查询
lastIp
string
最后登录的IP
模糊查询
status
integer
状态
0=禁用,1=正常
role
integer
角色ID
pageIndex
integer
必需
pageSize
integer
必需
orders
array [object {2}]
可选
column
string
字段名
必须严格遵守系统返回的字段名,即原样的驼峰命名法
asc
boolean
是否正序排序
示例
{
"user": "asd",
"qq": "1330166565",
"regTime": 123123123,
"lastTime": 123123123,
"lastIp": "127.0.0.1",
"pageIndex": 1,
"pageSize": 10
}
示例代码
返回响应
成功(200)
错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
success
boolean
必需
msg
string
必需
sign
string
必需
result
object
必需
records
array [object {13}]
必需
total
integer
必需
size
integer
必需
current
integer
必需
orders
array[string]
必需
optimizeCountSql
boolean
必需
searchCount
boolean
必需
countId
null
必需
maxLimit
null
必需
pages
integer
必需
timestamp
integer
必需
示例成功示例
{
"code": 200,
"success": true,
"msg": "获取成功",
"sign": "",
"result": {
"records": [
{
"id": 3,
"user": "daen",
"pass": "asdad",
"qq": "1233465",
"regTime": 1646239076,
"lastTime": null,
"lastIp": null,
"token": null,
"status": 1
},
{
"id": 4,
"user": "xiaomo",
"pass": "fgjfgj",
"qq": "1264235",
"regTime": 1646239076,
"lastTime": null,
"lastIp": null,
"token": null,
"status": 1
}
],
"total": 2,
"size": 10,
"current": 1,
"orders": [],
"optimizeCountSql": true,
"searchCount": true,
"countId": null,
"maxLimit": null,
"pages": 1
},
"timestamp": 1646320913832
}
最后修改时间: 3 年前