Commit 4942dd56ece146ee94a728ce2ea18c75365701e9

Authored by shiyang
1 parent 1c38d5e859

初诊获取预约建档 身高、体重、血压数据流转

Showing 2 changed files with 47 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java View file @ 4942dd5
... ... @@ -4056,6 +4056,11 @@
4056 4056 }
4057 4057 }
4058 4058 antexListResult.setServiceList(serTypeNameList);
  4059 + /** 秦皇岛6.6需求 */
  4060 + antexListResult.setQhdjdheight(patients.getQhdjdheight());
  4061 + antexListResult.setQhdyqweight(patients.getQhdyqweight());
  4062 + antexListResult.setQhdjdssy(patients.getQhdjdssy());
  4063 + antexListResult.setQhdjdszy(patients.getQhdjdszy());
4059 4064 }
4060 4065 return new BaseObjectResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功").setData(antexListResult);
4061 4066 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java View file @ 4942dd5
... ... @@ -80,6 +80,48 @@
80 80 */
81 81 private List<String> serviceList;
82 82  
  83 + /** 秦皇岛6.6需求 */
  84 + //预约建档身高
  85 + private String qhdjdheight;
  86 + //预约建档孕前体重
  87 + private String qhdyqweight;
  88 + //预约建档收缩压(高压)
  89 + private String qhdjdssy;
  90 + //预约建档舒张压(低压)
  91 + private String qhdjdszy;
  92 +
  93 + public String getQhdjdheight() {
  94 + return qhdjdheight;
  95 + }
  96 +
  97 + public void setQhdjdheight(String qhdjdheight) {
  98 + this.qhdjdheight = qhdjdheight;
  99 + }
  100 +
  101 + public String getQhdyqweight() {
  102 + return qhdyqweight;
  103 + }
  104 +
  105 + public void setQhdyqweight(String qhdyqweight) {
  106 + this.qhdyqweight = qhdyqweight;
  107 + }
  108 +
  109 + public String getQhdjdssy() {
  110 + return qhdjdssy;
  111 + }
  112 +
  113 + public void setQhdjdssy(String qhdjdssy) {
  114 + this.qhdjdssy = qhdjdssy;
  115 + }
  116 +
  117 + public String getQhdjdszy() {
  118 + return qhdjdszy;
  119 + }
  120 +
  121 + public void setQhdjdszy(String qhdjdszy) {
  122 + this.qhdjdszy = qhdjdszy;
  123 + }
  124 +
83 125 public List<String> getServiceList() {
84 126 return serviceList;
85 127 }