简要描述:

  • 登记接口 移动端用于录入登记

接口版本:

版本号 制定人 制定日期 修订日期
1.0.0 朱小乾 2022-05-26 -

请求URL:

  • /api/examRecord/Registraction

请求方式:

  • POST

请求头:

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

请求参数:

参数名 是否必须 类型 说明
HealthExameeId string 体检号:录入登记时可为空
IdCard string 身份证号
Mobile string 手机号
PatName string 姓名
Gender string 性别
Age string 年龄
ExameeTagId int 用户类型
ExamDate detetime 检测时间
IsPre string 优先体检
ExamAreaId int 检区Id
Marriage int 婚姻
preExamNo string 预留导检号
Languages string 语言类型
DataItem Array 项目
HealthExamDepartmentId string 科室Id
HealthExamItemId string 项目Id
status string 项目状态; 默认0
  1. {
  2. "HealthExameeId": "",
  3. "IdCard": "342626199705101651",
  4. "Mobile": "15869476400",
  5. "PatName": "test",
  6. "Gender": "0",
  7. "Age": "35",
  8. "ExameeTagId": 1,
  9. "ExamDate": "2022-05-26T13:43:58.5466451+08:00",
  10. "IsPre": "0",
  11. "ExamAreaId": 1,
  12. "Marriage": null,
  13. "RecordId": null,
  14. "preExamNo": "",
  15. "Languages": null,
  16. "DataItem": [{
  17. "HealthExameeId": null,
  18. "HealthExamDepartmentId": "1048",
  19. "HealthExamItemId": "115",
  20. "status": "0"
  21. }]
  22. }

返回示例:

正确时返回:

  1. {"code":1,"message":"","data":10142}

错误时返回:

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

返回参数说明:

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

备注:

-

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