简要描述:
- 获取列表
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
1.0.0 | 朱小乾 | 2022-03-18 |
请求URL:
- /api/Security/User/GetList
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
Equipment | 否 | string | 设备类型(guide-pc :导检台pc;caller-pc :叫号端PC;guide-pad :导检台Pad;caller-pad :叫号端Pad;manage:管理后台) |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
code | 否 | string | 代码 |
fullName | 否 | string | 全称 |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"id": 2,
"createTime": "2022-03-18T11:02:49.197",
"updateTime": "1753-01-01T00:00:00",
"code": "guide-pc",
"fullName": "导检台pc",
"url": "",
"description": ""
},
{
"id": 3,
"createTime": "2022-03-18T11:03:05.683",
"updateTime": "1753-01-01T00:00:00",
"code": "caller-pc",
"fullName": "叫号端PC",
"url": "",
"description": ""
},
{
"id": 4,
"createTime": "2022-03-18T11:03:22.67",
"updateTime": "1753-01-01T00:00:00",
"code": "guide-pad",
"fullName": "导检台Pad",
"url": "",
"description": ""
},
{
"id": 5,
"createTime": "2022-03-18T11:03:38.683",
"updateTime": "1753-01-01T00:00:00",
"code": "caller-pad",
"fullName": "叫号端Pad",
"url": "",
"description": ""
}
]
}
错误时返回:
{
"code": 1,
"message": "操作成功",
"data": null
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | 主键Id |
createTime | datetime | 创建时间 |
updateTime | datetime | 创建时间 |
code | string | 代码 |
fullName | string | 全称 |
url | string | 地址 |
description | int | 描述 |
备注:
-
文档更新时间: 2022-03-18 11:50