简要描述:
- 获取指定医生
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.5.2 | 朱小乾 | 2022-12-29 | - |
请求URL:
- /api/mobileGuide/guideMain/GetDepartDoctor
请求方式:
- Get
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
departId | Y | int | 科室ID |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"queueId": 1153,
"queueName": "一般检查2",
"positionId": 1184,
"positionName": "一般检查3",
"tags": [
1,
2
],
"gender": 0,
"queueState": 1,
"doctorId": 0,
"doctorName": null,
"doctorGender": null,
"callerState": 1
}
]
}
错误时返回:
{
"code": 3,
"message": "",
"data": null
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
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