Commit e62790e0c655677ac98973a1f9e0798720f9ccb2
1 parent
a5335eb571
Exists in
master
and in
8 other branches
增加是否通知
Showing 2 changed files with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
e62790e
... | ... | @@ -157,6 +157,7 @@ |
157 | 157 | if(CollectionUtils.isNotEmpty(examinationModel)){ |
158 | 158 | List data = new ArrayList(); |
159 | 159 | if(null!=examinationModel&&StringUtils.isNotEmpty(examinationModel.get(0).getRiskFactor())){ |
160 | + matDeliverListResult.setTireNumber1(examinationModel.get(0).getTireNumber()); | |
160 | 161 | List l = JsonUtil.toList(examinationModel.get(0).getRiskFactor(),List.class); |
161 | 162 | for(int i=0;i<l.size();i++){ |
162 | 163 | String key = (String)l.get(i); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
e62790e
... | ... | @@ -42,7 +42,18 @@ |
42 | 42 | //末次月经 |
43 | 43 | private String lastMenses; |
44 | 44 | |
45 | + // 胎数 | |
46 | + private String tireNumber1; | |
47 | + | |
45 | 48 | private List data = new ArrayList(); |
49 | + | |
50 | + public String getTireNumber1() { | |
51 | + return tireNumber1; | |
52 | + } | |
53 | + | |
54 | + public void setTireNumber1(String tireNumber1) { | |
55 | + this.tireNumber1 = tireNumber1; | |
56 | + } | |
46 | 57 | |
47 | 58 | public MatDeliverListResult convertToResult(List<MaternalDeliverModel> destList,Patients patients) { |
48 | 59 | setId(patients.getId()); |