简要描述:

  • 获取指引记录

接口版本:

版本号 制定人 制定日期 修订日期
3.1.0 朱小乾 2022-06-23 -

请求URL:

  • /api/mobileGuide/recordLogger/GetQueueGuideLogs

请求方式:

  • Get

请求头:

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

请求参数:

参数名 是否必须 类型 说明
logId int 日志Id

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "examQueueId": 1105,
  7. "examQueueName": "一般检查",
  8. "isParallelPriorityGuide": false,
  9. "parallelPriorityGuideNum": 0,
  10. "nowPosition": 0,
  11. "positionCount": 0,
  12. "aveTime": 0,
  13. "bestQueueId": 1105,
  14. "bestQueueName": "一般检查",
  15. "waitTime": 0
  16. }
  17. ]
  18. }

错误时返回:

  1. {
  2. "code": 12,
  3. "message": " ",
  4. "data": null
  5. }

返回参数说明:

参数名 类型 说明
examQueueId int 队列ID
examQueueName string 队列名称
checkCisParallelPriorityGuideount bool 是否优先并行指引
parallelPriorityGuideNum int 并行优先数量
nowPosition int 当前排位
positionCount int 诊位数量
aveTime int 平均时间
bestQueueId int 最优队列Id
bestQueueName string 最优队列名称
waitTime int 等待时间

备注:

-

文档更新时间: 2023-08-15 16:39