文档
测试

查看所有用户

POST
http://localhost:8888/qgy/user/list

接口描述

查看所有用户信息

请求参数

参数名
类型
描述
必填
index
Integer
当前页码(NULL)
必填
length
Integer
每页个数(NULL)
必填

返回示例

``` { "result": 1, "msg": "successful operation!", "number": 10,//每页个数 "code": "QG_SUS1000", "data": [ { "id": 12, "name": "张三", "account": "admin", "password": "123", "phone": "123456789", "adhibitionId": 9, "joindate": "2019-07-09T16:00:00.000+0000", "updatedate": "2019-07-010T16:00:00.000+0000", "power": 2 } ], "count": 5//总条数 } ``` ```