Commit bf20e8f00dc706af18401c8d733495a0a20529dd

Authored by yangfei
1 parent ca850e1095

追访

Showing 3 changed files with 3 additions and 2 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyModel.java View file @ bf20e8f
... ... @@ -164,6 +164,7 @@
164 164 //高危因素
165 165 private String highRiskReason;
166 166  
  167 +
167 168 //诊断
168 169 private String diagnose;
169 170  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ bf20e8f
... ... @@ -1128,7 +1128,7 @@
1128 1128 } catch (Exception e) {
1129 1129 // 什么都不干
1130 1130 }
1131   - if("1000000117".equals(patients.getHospitalId())){
  1131 + if("1000000114".equals(patients.getHospitalId())){
1132 1132 patientManagerQueryModel.setPhone(patients.getPhone());
1133 1133 patientManagerQueryModel.setCardNo(patients.getCardNo());
1134 1134 }else{
platform-operate-api/src/main/java/com/lyms/platform/operate/web/utils/BabyListTask.java View file @ bf20e8f
... ... @@ -64,7 +64,7 @@
64 64 result.setId(model.getId());
65 65 if (model.getHighRisk() == null || model.getHighRisk() == 0) {
66 66 result.setHighRisk("健康");
67   - } else {
  67 + } else if(model.getHighRisk()==1){
68 68 result.setHighRisk("高危");
69 69 }
70 70