Commit b3ee6c331c86d48cac65c55ef64cab05de2a1e3f
1 parent
0bf45ec428
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/BabyCheckFacade.java
View file @
b3ee6c3
... | ... | @@ -2287,6 +2287,7 @@ |
2287 | 2287 | isBuild = true; |
2288 | 2288 | } |
2289 | 2289 | BabyChooseResult result = new BabyChooseResult(); |
2290 | + result.setBabyCardNo(model.getCardNo()); | |
2290 | 2291 | result.setId(model.getId()); |
2291 | 2292 | result.setPid(model.getPid()); |
2292 | 2293 | result.setMonthAge(DateUtil.getBabyMonthAge(model.getBirth(), new Date())); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyChooseResult.java
View file @
b3ee6c3
... | ... | @@ -40,6 +40,16 @@ |
40 | 40 | //出院诊断 |
41 | 41 | private String cyzd; |
42 | 42 | |
43 | + private String babyCardNo; | |
44 | + | |
45 | + public String getBabyCardNo() { | |
46 | + return babyCardNo; | |
47 | + } | |
48 | + | |
49 | + public void setBabyCardNo(String babyCardNo) { | |
50 | + this.babyCardNo = babyCardNo; | |
51 | + } | |
52 | + | |
43 | 53 | public String getCyzd() { |
44 | 54 | return cyzd; |
45 | 55 | } |