简要描述:
- 获取完成列表
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
3.8.5 | 朱小乾 | 2023-08-15 | - |
请求URL:
/api/mobileGuide/guideMain/GetHasFinishPageList
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
queueId | 否 | int | 队列id |
positionId | 否 | int | 诊位Id |
departId | 否 | int | 科室Id |
page | 是 | object | 分页 |
searchKey | 是 | string | 查询标识 |
返回示例:
正确时返回:
{
"code": 1,
"message": "操作成功",
"data": [
{
"examRecordId": "11177",
"nextDepartName": "",
"userName": "hh",
"examNo": "100",
"status": "完成",
"mobile": "",
"gender": "0",
"isVip": "1",
"outNo": "SG11480587"
}
]
}
错误时返回:
{
"code": 1,
"message": "操作成功",
"data": {
"page": 1,
"pageSize": 50,
"total": 7,
"list": [
{
"examRecordId": "43375",
"nextDepartName": null,
"userName": "柴议雯",
"examNo": "1",
"status": null,
"mobile": "13967003092",
"gender": "1",
"isVip": "2",
"outNo": "600080005",
"endExamTime": "2023-08-15T10:27:33",
"queueId": 50,
"positionId": 61,
"doctorId": 437,
"doctorName": "超级管理员",
"departmentId": 3,
"clientIp": null,
"eventType": 0,
"eventDes": null,
"operaType": 0,
"operaTypeDes": null,
"operaUser": null
}
]
}
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
clientIp | string | IP |
eventType | int | 事件类型:1:进入队列 2:呼叫 3:离开队列 |
eventDes | string | 事件名称 |
operaType | int | 操作类型 |
operaTypeDes | string | 操作名称 |
operaUser | string | 操作人 |
备注:
进入队列(1):
33:系统排队进入;
39:ParallelInQueue;
44:手动重置进入队列;
45:系统重置进入队列;
50:更换队列进入;
呼叫(2):
24:医生端呼叫;
47:系统自动呼叫;
离开队列(3):
5:更换队列;
6:弃检;
2:完成
51:出收单
-
文档更新时间: 2023-08-17 17:23