简要描述:
- 修改医生端诊位
接口版本:
| 版本号 | 制定人 | 制定日期 | 修订日期 |
|---|---|---|---|
| 1.0.0 | 朱小乾 | 2022-04-07 |
请求URL:
- /api/CallerSetting/UpdateGuidedSetting
请求方式:
- POST
请求头:
| 参数名 | 是否必须 | 类型 | 说明 |
|---|---|---|---|
| Content-Type | 是 | string | 请求类型: application/json |
请求参数:
| 参数名 | 是否必须 | 类型 | 说明 |
|---|---|---|---|
| id | 是 | int | 主键Id |
| name | 是 | string | 医生端名称 |
| macAddress | 是 | string | 医生端MAC地址 |
| remarks | 是 | string | 备注 |
| status | 是 | int | 0:关闭;1:启动 |
| examPositionId | 是 | string | 诊位Id |
| maxCountInRoom | 是 | int | 同时就诊人数 |
| order | 是 | int | 序号 |
返回示例:
正确时返回:
{"code": 1,"message": "","data": {"id": 1231,"name": "测试多诊位","macAddress": "12345678","remarks": "测试","status": 0,"positionName": "其他检区→心电图诊室→心电图诊位1","examPositionId": "16","maxCountInRoom": 3,"parentId": 0,"order": 0}}
错误时返回:
返回参数说明:
| 参数名 | 类型 | 说明 |
|---|---|---|
| id | int | 主键Id |
| name | string | 名称 |
| macAddress | string | 地址 |
| remarks | string | 备注 |
| status | bool | 叫号器状态 |
| positionName | string | 叫号器状态 |
| examPositionId | string | 诊位Id |
| maxCountInRoom | int | 最大数量 |
| order | int | 序号 |
备注:
-
文档更新时间: 2022-04-07 15:06