Commit fff86f527454d1e19a743d946bc5e473c0eb1454

Authored by liquanyu
1 parent 7ed329dbeb

update code

Showing 3 changed files with 32 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java View file @ fff86f5
... ... @@ -166,6 +166,17 @@
166 166 //传染病史
167 167 private String infectDiseases;
168 168  
  169 + //浮肿
  170 + private String edema;
  171 +
  172 + public String getEdema() {
  173 + return edema;
  174 + }
  175 +
  176 + public void setEdema(String edema) {
  177 + this.edema = edema;
  178 + }
  179 +
169 180 public String getInfectDiseases() {
170 181 return infectDiseases;
171 182 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ fff86f5
... ... @@ -1118,6 +1118,15 @@
1118 1118 /* 基本信息 */
1119 1119 //孕妇基本信息
1120 1120 map.put("id", data.getId());
  1121 + String edema = "";
  1122 + if (org.apache.commons.lang.StringUtils.isNotEmpty(data.getEdema())) {
  1123 + for (FuZhongEnums fuZhongEnums : FuZhongEnums.values()) {
  1124 + if (data.getEdema().equals(fuZhongEnums.getId())) {
  1125 + edema = fuZhongEnums.getName();
  1126 + }
  1127 + }
  1128 + }
  1129 + map.put("edema", edema);
1121 1130  
1122 1131 map.put("birthDefectTodo", data.getBirthDefectTodo());
1123 1132 map.put("diagnosisOther", data.getDiagnosisOther());
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java View file @ fff86f5
... ... @@ -243,6 +243,17 @@
243 243 //甲状腺过氧化物酶抗体
244 244 private String jzxgyhwmkt;
245 245  
  246 + //浮肿
  247 + private String edema;
  248 +
  249 + public String getEdema() {
  250 + return edema;
  251 + }
  252 +
  253 + public void setEdema(String edema) {
  254 + this.edema = edema;
  255 + }
  256 +
246 257 public String getCjzxs() {
247 258 return cjzxs;
248 259 }
... ... @@ -1315,6 +1326,7 @@
1315 1326 antExChuModel.setCjzxs(cjzxs);
1316 1327 antExChuModel.setYljzxs(yljzxs);
1317 1328 antExChuModel.setJzxgyhwmkt(jzxgyhwmkt);
  1329 + antExChuModel.setEdema(edema);
1318 1330  
1319 1331 return antExChuModel;
1320 1332 }