简要描述:

  • 订单查询接口

接口版本:

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

请求URL:

请求方式:

  • POST

请求参数:

参数名 是否必须 类型 说明
idCard string 身份证号
name string 姓名

返回示例:

正确时返回:

  1. {
  2. "code": 0,
  3. "message": "请求成功",
  4. "totalCount": 0,
  5. "busCode":"",
  6. "data": [
  7. {
  8. "appointNo": null,
  9. "patientCode": null,
  10. "examNo": null,
  11. "name": "余香斌",
  12. "idCard": "33092119110201101",
  13. "age": 33,
  14. "birthday": "1989-04-10",
  15. "sex": 0,
  16. "orderNo": "20220418151152815969590",
  17. "status": 0,
  18. "appointTime": "2022-04-19",
  19. "examPeriod":"7:00-8:00",
  20. "regTime": "0001-01-01 00:00:00",
  21. "orderMoney": 100000,
  22. "phoneNo": "15158106906",
  23. "address": null,
  24. "isVip": 0,
  25. "companyName": "yu测试单位14",
  26. "companyCode": null,
  27. "mealName": null,
  28. "mealCode": null
  29. }
  30. ]
  31. }

错误时返回:

  1. {
  2. "code": 500,
  3. "message": "请求参数不能为空",
  4. "busCode":"021001",
  5. "data": []
  6. }

返回参数说明:

参数 类型 描述
appointNo string 预约号
patientCode string 就诊卡号
examNo string 体检编号
name string 姓名
idCard string 身份证
age string 年龄
birthday string 出生日期
sex int 性别,0-男,1-女,2-通用
orderNo string 订单编号
status int 0代表未登记,1代表已登记
appointTime string 预约日期
examPeriod string 预约时间段
regTime string 登记日期
orderMoney decimal 订单金额,到元
phoneNo string 联系电话
address string 联系地址
isVip string 是否vip,0代表否,1代表是
companyName string 单位名称
companyCode string 单位编码
mealName string 套餐名称
mealCode string 套餐编码

备注:

文档更新时间: 2023-01-09 16:14