简要描述:

  • 获取打印数据接口

接口版本:

版本号 制定人 制定日期 修订日期
1.0.1 余香斌 2022-08-09 2022-08-09

请求URL:

  • /api/aioMain/aioRecord/ExamPrintData

请求方式:

  • POST

请求参数:

参数 类型 是否必填 描述
idcard string 身份证
name string 姓名
appointno string 预约号
examno string 登记号

返回示例:

正确时返回:

  1. {
  2. "code": 1,
  3. "message": "请求成功",
  4. "data": [
  5. {
  6. "order": {
  7. "appointNo": "2022080901",
  8. "patientCode": null,
  9. "examNo": "2022080901",
  10. "name": "余香斌",
  11. "idCard": "33092119110201101",
  12. "age": 33,
  13. "birthday": "1989-04-10",
  14. "sex": 0,
  15. "orderNo": "20220418151152815969590",
  16. "status": 1,
  17. "appointTime": "0001-01-01 00:00:00",
  18. "regTime": "0001-01-01 00:00:00",
  19. "orderMoney": 0,
  20. "phoneNo": null,
  21. "address": null,
  22. "isVip": 0,
  23. "companyName": null,
  24. "companyCode": null,
  25. "mealName": null,
  26. "mealCode": null
  27. },
  28. "barCodes": [
  29. {
  30. "examNo": "2022080901",
  31. "barcode": "202208090101",
  32. "barTypeName": "血液",
  33. "tubeName": "黄管",
  34. "comItemName": "血常规"
  35. }
  36. ],
  37. "guidanceSheet": {
  38. "examNo": "2022080901",
  39. "mealName": "套餐A",
  40. "mealTypeName": "普通套餐",
  41. "examTypeName": null,
  42. "hospitalName": "浙一",
  43. "hospitalAddress": "杭州",
  44. "hospitalPhone": null,
  45. "firstDeptName": null,
  46. "remark": null,
  47. "itemList": [
  48. {
  49. "examNo": "2022080901",
  50. "itemName": "白蛋白",
  51. "itemCode": "Y0101",
  52. "deptName": "检验科",
  53. "itemSort": 1,
  54. "itemTips": null,
  55. "itemReference": null
  56. }
  57. ]
  58. }
  59. }
  60. ]
  61. }

错误时返回:

  1. {
  2. "code": 12,
  3. "message": "请求参数不能为空",
  4. "data": null
  5. }

返回参数说明:

参数 类型 描述
order object
order.appointNo string 预约号
order.patientCode object 就诊卡号
order.examNo string 体检编号
order.name string 姓名
order.idCard string 身份证
order.age int 年龄
order.birthday string 出生日期
order.sex string 性别,0-男,1-女,2-通用
order.orderNo string 订单编号
order.appointTime string 预约时间
order.regTime string 登记日期
order.orderMoney decima 订单金额,到元
order.phoneNo string 联系电话
order.address string 联系地址
order.isVip string 是否vip,0代表否,1代表是
order.companyName string 单位名称
order.companyCode string 单位编码
order.mealName string 套餐名称
order.mealCode string 套餐编码
barCodes array 条码集合
barCodes.examNo string 体检编号
barCodes.barcode string 条码号
barCodes.barTypeName string 条码类型名称
barCodes.tubeName string 试管名称
barCodes.comItemName string 组合项目名称
guidanceSheet object 导引单对象
guidanceSheet.examNo string 体检编号
guidanceSheet.mealName string 套餐名称
guidanceSheet.mealTypeName string 套餐类型名称
guidanceSheet.examTypeName string 体检类型名称
guidanceSheet.hospitalName string 医院名称
guidanceSheet.hospitalAddress string 医院地址
guidanceSheet.hospitalPhone string 体检中心电话
guidanceSheet.firstDeptName string 首站科室名称
guidanceSheet.remark string 备注
guidanceSheet.itemList array 项目列表
guidanceSheet.itemList.examNo string 体检编号
guidanceSheet.itemList.itemName string 项目名称
guidanceSheet.itemList.itemCode string 项目编号
guidanceSheet.itemList.deptName string 科室名称
guidanceSheet.itemList.itemSort int 项目序号
guidanceSheet.itemList.itemTips string 提示信息
guidanceSheet.itemList.itemReference string 参考值

备注:

文档更新时间: 2022-08-11 10:02