Commit b51c28667e4a931f3e4447830aaebc6d891ff0f1
Exists in
master
and in
6 other branches
Merge remote-tracking branch 'origin/master'
Showing 2 changed files
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java
View file @
b51c286
| ... | ... | @@ -332,6 +332,7 @@ |
| 332 | 332 | for (BabyPatientExtendEarFollowUp fu : BabyPatientExtendEarFollowUpList) { |
| 333 | 333 | FollowUpListResult res = new FollowUpListResult(); |
| 334 | 334 | String babyId = fu.getBabyId(); |
| 335 | + res.setBabyId(babyId); | |
| 335 | 336 | //根据babyId查询档案信息 |
| 336 | 337 | BabyModel mb = babyService.getOneBabyById(String.valueOf(babyId)); |
| 337 | 338 | res.setId(fu.getId()); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/FollowUpListResult.java
View file @
b51c286
| ... | ... | @@ -12,6 +12,8 @@ |
| 12 | 12 | private String id; |
| 13 | 13 | //儿童名称 |
| 14 | 14 | private String babyName; |
| 15 | + //儿童Id | |
| 16 | + private String babyId; | |
| 15 | 17 | //母亲姓名 |
| 16 | 18 | private String mommyName; |
| 17 | 19 | //月龄 |
| ... | ... | @@ -36,6 +38,15 @@ |
| 36 | 38 | * 当前月龄 |
| 37 | 39 | */ |
| 38 | 40 | private String cMonthAge; |
| 41 | + | |
| 42 | + | |
| 43 | + public String getBabyId() { | |
| 44 | + return babyId; | |
| 45 | + } | |
| 46 | + | |
| 47 | + public void setBabyId(String babyId) { | |
| 48 | + this.babyId = babyId; | |
| 49 | + } | |
| 39 | 50 | |
| 40 | 51 | public String getcMonthAge() { |
| 41 | 52 | return cMonthAge; |