简要描述:

  • 获取列表

接口版本:

版本号 制定人 制定日期 修订日期
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 全称

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "id": 2,
  7. "createTime": "2022-03-18T11:02:49.197",
  8. "updateTime": "1753-01-01T00:00:00",
  9. "code": "guide-pc",
  10. "fullName": "导检台pc",
  11. "url": "",
  12. "description": ""
  13. },
  14. {
  15. "id": 3,
  16. "createTime": "2022-03-18T11:03:05.683",
  17. "updateTime": "1753-01-01T00:00:00",
  18. "code": "caller-pc",
  19. "fullName": "叫号端PC",
  20. "url": "",
  21. "description": ""
  22. },
  23. {
  24. "id": 4,
  25. "createTime": "2022-03-18T11:03:22.67",
  26. "updateTime": "1753-01-01T00:00:00",
  27. "code": "guide-pad",
  28. "fullName": "导检台Pad",
  29. "url": "",
  30. "description": ""
  31. },
  32. {
  33. "id": 5,
  34. "createTime": "2022-03-18T11:03:38.683",
  35. "updateTime": "1753-01-01T00:00:00",
  36. "code": "caller-pad",
  37. "fullName": "叫号端Pad",
  38. "url": "",
  39. "description": ""
  40. }
  41. ]
  42. }

错误时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": null
  5. }

返回参数说明:

参数名 类型 说明
id int 主键Id
createTime datetime 创建时间
updateTime datetime 创建时间
code string 代码
fullName string 全称
url string 地址
description int 描述

备注:

-

文档更新时间: 2022-03-18 11:50