简要描述:

  • 获取排队队列

接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 朱小乾 2022-02-28 -

请求URL:

  • /api/mobileGuide/callerMain/DoctorQueueInfo

请求方式:

  • POST

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json

请求参数:

{
“listQueueId”: [
0
],
“positionId”: [
0
]
}

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "queueId": "1038",
  7. "queueName": "采血队列(普通)",
  8. "status": 1,
  9. "departmentType": "0",
  10. "weight": "0",
  11. "departMentId": "1016",
  12. "isHaveDoctor": true,
  13. "gender": "2",
  14. "alternatesNum": "0",
  15. "minNum": "5",
  16. "maxNum": "1000",
  17. "screenShowNum": 5,
  18. "queuePeopleDtos": [
  19. {
  20. "id": 75,
  21. "userName": "王爱珍",
  22. "status": 0,
  23. "examNo": "23",
  24. "sortNo": "",
  25. "isVip": "1",
  26. "recordId": "10001",
  27. "order": null,
  28. "lockNo": null,
  29. "updateTime": "0001-01-01T00:00:00",
  30. "positionName": null,
  31. "positionId": "42",
  32. "positiIdOrder": null,
  33. "gender": "1",
  34. "roomName": "采血(采血诊位2)",
  35. "location": null,
  36. "age": 58,
  37. "memberType": 0
  38. }
  39. ],
  40. "noCheckNum": 5,
  41. "roomName": null
  42. }
  43. ]
  44. }

错误时返回:

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

返回参数说明:

参数名 类型 说明
gender string 队列性别: 0:男;1:女;2:不限
status int 状态: 0:检查中;1:排队;2:过号;3:锁定
memberType int 0 普通人 1 机器人

备注:

-

文档更新时间: 2022-09-06 15:54