Commit 65ee78d9d83f9a9a553b288ce5f573d7cf49cb13
1 parent
ce2f71c365
Exists in
master
and in
6 other branches
儿童添加档案编号
Showing 3 changed files with 13 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyBookbuildingFacade.java
View file @
65ee78d
| ... | ... | @@ -1227,6 +1227,7 @@ |
| 1227 | 1227 | */ |
| 1228 | 1228 | private BabyBuildResult getBabyBuildResult(BabyModel model) { |
| 1229 | 1229 | BabyBuildResult result = new BabyBuildResult(); |
| 1230 | + result.setFileCode(model.getFileCode()); | |
| 1230 | 1231 | result.setmHighRiskReason(mongoUtil.findColor(model.getmHighRiskReason())); |
| 1231 | 1232 | result.setBabyHighRiskReason(mongoUtil.findColor(model.getBabyHighRiskReason())); |
| 1232 | 1233 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyEarBase.java
View file @
65ee78d
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyBuildResult.java
View file @
65ee78d
| ... | ... | @@ -192,6 +192,17 @@ |
| 192 | 192 | |
| 193 | 193 | private String couponCode; |
| 194 | 194 | |
| 195 | + //档案编号 滦平需求 | |
| 196 | + private String fileCode; | |
| 197 | + | |
| 198 | + public String getFileCode() { | |
| 199 | + return fileCode; | |
| 200 | + } | |
| 201 | + | |
| 202 | + public void setFileCode(String fileCode) { | |
| 203 | + this.fileCode = fileCode; | |
| 204 | + } | |
| 205 | + | |
| 195 | 206 | public String getCouponCode() { |
| 196 | 207 | return couponCode; |
| 197 | 208 | } |