POST api/v1/admin/AdminUser/Search

查询后台用户(如果userName为空,查找全部用户)

Request Information

Parameters

NameDescriptionAdditional 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": "1ebb19309cf24cb0a000d2b38e9ab03c",
  "appOwnerId": 0
}