搜索普通管理员

## 搜索普通管理员 ### 请求方法:GET/POST 接口地址:{域名}/platform/normalAdmin/search 接口参数: |字段|类型|描述| |-|-|-| |username(用户名) |userStatus(用户状态:ENABLE-正常状态,DISABLE-禁用状态) |pageNumber(默认为1) |pageSize(默认为10) ### 版本 |版本|作者|| |-|-|-| |v1.0|xxx|| ### 例子 `http://94.191.69.118/platform/normalAdmin/search username=lingj&userStatus=DISABLE&pageNumber=1&pageSize=10 ` 返回: ```json { "msg": "success", "code": 200, "data": { "totalRow": 1, "pageNumber": 1, "firstPage": true, "lastPage": true, "totalPage": 1, "pageSize": 10, "list": [ { "user_status": "DISABLE", "password": "dea93c52de8a30a6e576d76225ea52a4", "user_type": "NORMAL_ADMIN", "last_login_time": null, "id": 4, "username": "lingj" } ] } } ```