简要描述:
- 新增医生端
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
1.0.0 | 朱小乾 | 2022-04-07 |
请求URL:
- /api/CallerSetting/InsertGuideSetting
请求方式:
- POST
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type | 是 | string | 请求类型: application/json |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
name | 是 | string | 医生端名称 |
macAddress | 是 | string | 医生端MAC地址 |
remarks | 是 | string | 备注 |
status | 是 | int | 0:关闭;1:启动 |
examPositionId | 是 | string | 诊位Id |
maxCountInRoom | 是 | int | 同时检查人数 |
parentId | 是 | int | 医生端Id |
order | 是 | int | 排序 |
buttonInterval | 是 | int | 按钮间隔 |
返回示例:
正确时返回:
{
"code": 1,
"message": "",
"data": {
"id": 1232,
"name": "多诊位位置1",
"macAddress": "",
"remarks": "多诊位位置1备注",
"status": 0,
"positionName": "其他检区→心电图诊室→心电图诊位1",
"examPositionId": "16",
"maxCountInRoom": 2,
"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-06-09 09:41