文档
测试

分页获取所有用户

GET
http://localhost:8080/api/member/member/list/pages

请求参数

参数名
类型
描述
必填
page
当前页数
必填
limit
每页个数
必填

说明 / 示例

发送实例: ~~~ http://localhost:8080/api/member/member/list/pages?page=2&limit=2 ~~~ 返回实例: ~~~ { "msg": "获取成功!", "code": 0, "data": { "totalCount": 5, "pageSize": 2, "totalPage": 3, "currPage": 2, "list": [ { "id": 3, "username": "Liu", "password": "1111111", "nickname": "Liu", "mobile": "15583235634", "email": null, "header": null, "gender": 1, "birth": null, "city": null, "job": null, "sign": null, "createTime": "2023-06-29T16:00:00.000+00:00" }, { "id": 10, "username": "wewewe222", "password": "232323232", "nickname": "2323232323", "mobile": "77777777777", "email": "", "header": "", "gender": null, "birth": null, "city": "", "job": "", "sign": "", "createTime": "2023-07-02T16:00:00.000+00:00" } ] } } ~~~