简要描述:

  • 平台获取导检信息

接口版本:

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

请求URL:

  • /api/WeChat/ActionForPlat

请求方式:

  • Post

请求头:

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

请求参数:

参数名 是否必须 类型 说明
message Y string 消息
data Y string 数据
code Y string 数据:详见备注
  1. {
  2. "message": "",
  3. "data": "{\"IdCard\":\"T20000200197\"}",
  4. "code": "2001"
  5. }
  1. curl -X 'POST' \
  2. 'http://192.168.5.172:8890/api/WeChat/ActionForPlat' \
  3. -H 'accept: */*' \
  4. -H 'Content-Type: application/json-patch+json' \
  5. -d '{
  6. "message": "",
  7. "data": "{\"IdCard\":\"T20000200197\"}",
  8. "code": "2001"
  9. }'

返回示例:

正确时返回:

  1. {
  2. "code": "1",
  3. "message": "",
  4. "data": {
  5. "recordId": "10165",
  6. "outNo": "T20000200197",
  7. "name": "刘伟清",
  8. "gender": "0",
  9. "idCard": "",
  10. "birthYear": null,
  11. "datas": [
  12. {
  13. "itemNames": "采血;",
  14. "itemRelations": null,
  15. "departId": "1050",
  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": "不存在Code",
  4. "data": null
  5. }

返回参数说明:

参数名 类型 说明

备注:

代码 功能
2001 查询
2002 锁定
2003 解锁
2004 完成
2005 复检
文档更新时间: 2022-05-27 11:11