简要描述:

  • 多人编组登记

接口版本:

版本号 制定人 制定日期 修订日期
3.9.9 朱小乾 2024-01-31

请求URL:

  • /api/mobileGuide/record/MultipleSearchRegistraction

请求方式:

  • POST

请求头:

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

请求参数:

参数名 是否必须 类型 说明
idCards array(string) 体检号/身份证号
isGroup bool 是否分组
prefix string 前缀
exameeTagId int 客户类型
examAreaId int 检区ID
isPriority int 是否优先
priorityStrategyId int 优先策略ID
nurseId int 护士Id
regTime datetime 登记时间
examItems-itemId int 项目Id
examItems-departId int 科室Id
examItems-itemType int 项目类型
groupCode string 分组编码
  1. {
  2. "idCards": [
  3. "string"
  4. ],
  5. "isGroup": true,
  6. "type": "string",
  7. "isBreakfast": true,
  8. "isPre": true,
  9. "preExamNo": "string",
  10. "examAreaId": 0,
  11. "exameeTagId": 0,
  12. "isPriority": 0,
  13. "priorityStrategyId": 0,
  14. "nurseId": 0,
  15. "regTime": "2024-01-31T02:37:37.730Z",
  16. "groupCode": "string"
  17. }

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "",
  4. "data": []
  5. }

错误时返回:

  1. {
  2. "code": 12,
  3. "message": "失败",
  4. "data": null
  5. }

返回参数说明:

参数名 类型 说明
data int 用户的记录Id

备注:

-

文档更新时间: 2024-01-31 10:38