简要描述:

  • 获取指定医生

接口版本:

版本号 制定人 制定日期 修订日期
3.5.2 朱小乾 2022-12-29 -

请求URL:

  • /api/mobileGuide/guideMain/GetDepartDoctor

请求方式:

  • Get

请求头:

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

请求参数:

参数名 是否必须 类型 说明
departId Y int 科室ID

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "queueId": 1153,
  7. "queueName": "一般检查2",
  8. "positionId": 1184,
  9. "positionName": "一般检查3",
  10. "tags": [
  11. 1,
  12. 2
  13. ],
  14. "gender": 0,
  15. "queueState": 1,
  16. "doctorId": 0,
  17. "doctorName": null,
  18. "doctorGender": null,
  19. "callerState": 1
  20. }
  21. ]
  22. }

错误时返回:

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

返回参数说明:

参数名 类型 说明
queueId int 队列Id
queueName string 队列名称
positionId int 诊位Id
positionName string 诊位名称
tags array 客户类型
gender int 客户性别
queueState int 队列状态
doctorId int 医生Id
doctorName string 医生名称
doctorGender string 医生性别
callerState int 叫号器状态

备注:

-

文档更新时间: 2023-08-15 11:45