简要描述:

  • 获取列表

接口版本:

版本号 制定人 制定日期 修订日期
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-18T10:45:00.42",
  8. "updateTime": "2022-03-18T02:42:26.897",
  9. "code": "test1",
  10. "fullName": "测试角色1",
  11. "type": "string",
  12. "sortCode": 0,
  13. "enabledMark": true,
  14. "description": "string"
  15. },
  16. {
  17. "id": 3,
  18. "createTime": "2022-03-18T10:45:07.31",
  19. "updateTime": "2022-03-18T02:42:26.897",
  20. "code": "test2",
  21. "fullName": "测试角色2",
  22. "type": "string",
  23. "sortCode": 0,
  24. "enabledMark": true,
  25. "description": "string"
  26. },
  27. {
  28. "id": 4,
  29. "createTime": "2022-03-18T10:45:12.467",
  30. "updateTime": "2022-03-18T02:42:26.897",
  31. "code": "test3",
  32. "fullName": "测试角色3",
  33. "type": "string",
  34. "sortCode": 0,
  35. "enabledMark": true,
  36. "description": "string"
  37. },
  38. {
  39. "id": 5,
  40. "createTime": "2022-03-18T10:45:19.75",
  41. "updateTime": "2022-03-18T02:42:26.897",
  42. "code": "test4",
  43. "fullName": "测试角色4",
  44. "type": "string",
  45. "sortCode": 0,
  46. "enabledMark": true,
  47. "description": "string"
  48. }
  49. ]
  50. }

错误时返回:

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

返回参数说明:

参数名 类型 说明
id int 主键Id
createTime datetime 创建时间
updateTime datetime 创建时间
code string 代码
fullName string 全称
type string 类型
sortCode int 排序
enabledMark bool 是否启用
description string 描述

备注:

-

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