MES标准开放接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
1.4 KiB

### 查询用户信息列表
此接口用于查询mes的用户信息
此接口需要认证,详情请查看《认证方式》。
---
### 基本信息
方法:POST
URL: http://localhost:8033/open/queryUserList
---
### 请求
__请求参数__
| 参数名 | 类型 | 必填 | 说明 |
| :-- | :-- | :-- | :-- |
| profile | String | 是 | 厂区 |
| userName | String | 是 | 用户名,仅小写,英文与数字 |
| nick | String | 是 | 昵称 |
__请求示例:__
```
{
{
"data":{
"profile": "测试",
"userName":"0901001",
"nick":"赵云"
}
}
}
````
---
### 响应
__响应字段__
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| clock | string | 当前服务器时钟。 |
| status | string | 状态,ok:成功,error:错误,exception:异常 |
| data | object | 成功后返回具体内容 |
__data.users:__
| 字段 | 类型 | 说明 |
| :-- | :-- | :-- |
| userName | String | 用户名,仅小写,英文与数字 |
| nick | String | 昵称 |
| isActive | Bool | 是否启用 true:是|false:否 |
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "ok",
"data": {
"users":[
{
"userName":"0901001",
"nick":"赵云",
"isActive":true
}
]
}
}
```
__出现错误信息响应__
```
{
"clock": "2023-06-25 20:00:00.000",
"status": "error",
"message": "用户名已存在",
"data": {}
}
```