Commit 186e1bb2b0fafda05055be60ab1d589170cb2188
1 parent
84f006352b
Exists in
master
and in
6 other branches
居住类型
Showing 2 changed files with 11 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
186e1bb
... | ... | @@ -1328,6 +1328,7 @@ |
1328 | 1328 | */ |
1329 | 1329 | private BabyBuildResult getBabyBuildResult(BabyModel model) { |
1330 | 1330 | BabyBuildResult result = new BabyBuildResult(); |
1331 | + result.setLiveType(model.getLiveType()); | |
1331 | 1332 | result.setYn(model.getYn()); |
1332 | 1333 | result.setDataStatus(model.getDataStatus()); |
1333 | 1334 | result.setFileCode(model.getFileCode()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyBuildResult.java
View file @
186e1bb
... | ... | @@ -267,6 +267,16 @@ |
267 | 267 | //档案编号 滦平需求 |
268 | 268 | private String fileCode; |
269 | 269 | |
270 | + //居住类别 | |
271 | + private String liveType; | |
272 | + | |
273 | + public String getLiveType() { | |
274 | + return liveType; | |
275 | + } | |
276 | + | |
277 | + public void setLiveType(String liveType) { | |
278 | + this.liveType = liveType; | |
279 | + } | |
270 | 280 | |
271 | 281 | //显示服务信息 |
272 | 282 | private List<PatientSerResult> patientSerResults; |