简要描述:

  • 查询用户信息

接口版本:

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

请求URL:

  • /api/WeChat/QueryForMembers

请求方式:

  • Get

请求头:

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

请求参数:

参数名 是否必须 类型 说明
CardId Y string 卡号
  1. curl -X 'GET' \
  2. 'http://192.168.5.172:8890/api/WeChat/QueryForMembers?CardId=T20000200197' \
  3. -H 'accept: */*'

返回示例:

正确时返回:

  1. {
  2. "code": "1",
  3. "message": "",
  4. "data": {
  5. "recordId": "10000",
  6. "outNo": "600130225",
  7. "name": "王庆芳",
  8. "gender": "1",
  9. "idCard": "330802198104304025",
  10. "birthYear": null,
  11. "datas": [
  12. {
  13. "itemNames": "彩超肝、胆、胰、脾;\n甲状腺彩超;\n乳腺彩超;",
  14. "itemRelations": null,
  15. "departId": "1046",
  16. "departName": "彩超",
  17. "departZhiyin": null,
  18. "departIcon": null,
  19. "departType": "0",
  20. "status": "0",
  21. "nowQueueId": null,
  22. "nowQueueName": null,
  23. "nowQueueStatus": null,
  24. "nowPw": "",
  25. "waitTime": "--",
  26. "roomName": null,
  27. "areaName": null,
  28. "itemTips": null,
  29. "areaId": null,
  30. "roomId": null,
  31. "reQueueType": "默认机制",
  32. "zcNumMax": null,
  33. "zcNumNow": null,
  34. "isBieniao": "0",
  35. "isKongfu": "0"
  36. }
  37. ]
  38. }
  39. }

错误时返回:

  1. {
  2. "code": "0",
  3. "message": "不存在该用户的导检记录",
  4. "data": null
  5. }

返回参数说明:

参数名 类型 说明
recordId string Id
outNo string 体检号
name string 姓名
gender string 性别
idCard string 身份证号
birthYear string 出生日期

备注:

文档更新时间: 2022-05-27 11:12