文档
测试

查询所有用户

POST
http://localhost:8886/user/selectAllUser

响应参数

参数名
类型
描述
必填
status
Integer
状态码,200-成功,100-失败
必填
code
Integer
layUI默认状态码,0-成功
必填
data
T
用户实体列表
可选
msg
String
失败消息
可选

成功的返回示例

{ "status": 200, "code": 0, "data": [ { "id": 1, "username": "daniel", "password": "daniel", "phone": "12580125800", "balance": 10000 }, { "id": 2, "username": "root", "password": "root", "phone": "12580125800", "balance": 10000 }, { "id": 4, "username": "shs", "password": "123456" } ] }