POST api/v1/admin/AdminUser/Create
创建后台用户
Request Information
Parameters
| Name | Description | Additional information | 
|---|---|---|
| createReq | 所要创建用户的信息  | 
                
                             Define this parameter in the request body.  | 
            
Request body formats
application/json, text/json
            Sample:
        
{
  "userName": "sample string 1",
  "password": "sample string 2",
  "roleType": 0
}
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Response body formats
application/json, text/json
            Sample:
{
  "data": {
    "adminUserId": 1,
    "userName": "sample string 2",
    "roleTypeTxt": "未定义",
    "roleType": 0
  },
  "status": 0,
  "friendlyMessage": "sample string 1",
  "message": "sample string 2",
  "requestId": "977e36baac764c6cb0d4420c7299cdad",
  "appOwnerId": 0
}