简要描述:

  • 获取诊位信息

接口版本:

版本号 制定人 制定日期 修订日期
3.2.3 朱小乾 2022-08-24 -

请求URL:

  • /api/trExamination/getGuidePosition

请求方式:

  • POST

请求头:

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

请求参数:

参数名 是否必须 类型 说明
user object 用户信息
userId string 用户Id
userName string 用户名
data object 请求参数
ip string ip地址
  1. {
  2. "user": {
  3. "userId": "string",
  4. "userName": "string"
  5. },
  6. "data": {
  7. "ip": "192.168.5.223"
  8. }
  9. }

返回示例:

正确时返回:

  1. {
  2. "code": 0,
  3. "message": "操作成功",
  4. "data": [
  5. {
  6. "id": 4939,
  7. "name": null,
  8. "macAddress": "ds637950459838634513",
  9. "remarks": null,
  10. "status": 0,
  11. "queueName": "外科2",
  12. "queueId": "1136",
  13. "examPositionId": "91",
  14. "maxCountInRoom": 1,
  15. "order": 1,
  16. "gender": 2,
  17. "callerType": 3
  18. }
  19. ]
  20. }

错误时返回:

  1. {
  2. "code": 1,
  3. "message": "030100",
  4. "busCode": "Sequence contains no elements"
  5. }

返回参数说明:

参数名 类型 说明
id int 设备Id
name string 设备名称
macAddress string mac地址
remarks string 备注
status int 状态:0关闭;1启动
queueName string 队列名称
queueId string 队列Id
examPositionId string 诊位Id
maxCountInRoom int 房间内最大人数
order int 序号
gender int 性别0:男,1:女,2不限
callerType int 叫号器类型

备注:

-

文档更新时间: 2023-10-19 15:59