Commit 77f890722cc8b7b3905a05b889e678394c699e01
1 parent
a8d3867359
Exists in
master
and in
1 other branch
孕妇分娩后 变成产妇
Showing 1 changed file with 10 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
77f8907
... | ... | @@ -174,13 +174,23 @@ |
174 | 174 | |
175 | 175 | private class MatDeliverExt{ |
176 | 176 | private String hospitalName; |
177 | + private String hospitalId; | |
177 | 178 | private String id; |
178 | 179 | private String checkTime; |
179 | 180 | |
180 | 181 | public MatDeliverExt(MaternalDeliverModel deliverModel){ |
181 | 182 | setCheckTime(deliverModel.getDueDate()); |
182 | 183 | setId(deliverModel.getId()); |
184 | + setHospitalId(deliverModel.getHospitalId()); | |
183 | 185 | setHospitalName(deliverModel.getFmHospital()); |
186 | + } | |
187 | + | |
188 | + public String getHospitalId() { | |
189 | + return hospitalId; | |
190 | + } | |
191 | + | |
192 | + public void setHospitalId(String hospitalId) { | |
193 | + this.hospitalId = hospitalId; | |
184 | 194 | } |
185 | 195 | |
186 | 196 | public String getCheckTime() { |