POST api/v1/admin/AdminUser/Search
查询后台用户(如果userName为空,查找全部用户)
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
adminUserSearchReq | 查询条件 |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "userName": "sample string 1", "countPerPage": 2, "page": 3 }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "data": { "users": [ { "adminUserId": 1, "userName": "sample string 2", "roleTypeTxt": "未定义", "roleType": 0 }, { "adminUserId": 1, "userName": "sample string 2", "roleTypeTxt": "未定义", "roleType": 0 }, { "adminUserId": 1, "userName": "sample string 2", "roleTypeTxt": "未定义", "roleType": 0 } ], "totalCount": 1, "countPerPage": 2, "page": 3, "totalPage": 4 }, "status": 0, "friendlyMessage": "sample string 1", "message": "sample string 2", "requestId": "85391c81f2724c8091b78f2f297eab4b", "appOwnerId": 0 }