简要描述:

  • 匿名编组登记

接口版本:

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

请求URL:

  • /api/mobileGuide/record/MultipleHandleRegistraction

请求方式:

  • POST

请求头:

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

请求参数:

参数名 是否必须 类型 说明
sexes array(int) 性别列表
isGroup bool 是否分组
prefix string 前缀
exameeTagId int 客户类型
examAreaId int 检区ID
isPriority int 是否优先
priorityStrategyId int 优先策略ID
nurseId int 护士Id
regTime datetime 登记时间
examItems array(objecy) 登记项目
examItems-itemId int 项目Id
examItems-departId int 科室Id
examItems-itemType int 项目类型
groupCode string 分组编码
  1. {
  2. "sexes": [
  3. 0
  4. ],
  5. "isGroup": true,
  6. "prefix": "string",
  7. "examAreaId": 0,
  8. "exameeTagId": 0,
  9. "isPriority": 0,
  10. "priorityStrategyId": 0,
  11. "nurseId": 0,
  12. "regTime": "2024-01-31T02:30:58.301Z",
  13. "examItems": [
  14. {
  15. "itemId": 0,
  16. "departId": 0,
  17. "itemType": 0
  18. }
  19. ],
  20. "groupCode": "string"
  21. }

返回示例:

正确时返回:

  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:36