Commit 5a71dc42e36906c2d50b506dd1164edee2fd2deb
1 parent
ea395fb1cb
Exists in
master
and in
6 other branches
随访列表分页数据
Showing 2 changed files with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/FollowUpController.java
View file @
5a71dc4
... | ... | @@ -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 @
5a71dc4
... | ... | @@ -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; |