Commit 35e65216548ac37d5f741d0c8857e0f8f9a7661e
1 parent
638f942a9c
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 8 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/BabyHealthController.java
View file @
35e6521
... | ... | @@ -99,9 +99,16 @@ |
99 | 99 | @RequestParam(value = "waskSon", required = false) Integer waskSon, |
100 | 100 | @RequestParam(value = "checkDoctorId", required = false) String checkDoctorId, |
101 | 101 | @RequestParam(value = "level", required = false) String level, |
102 | + @RequestParam(value = "queryStartBirth", required = false) Date queryStartBirth, | |
103 | + @RequestParam(value = "queryEndBirth", required = false) Date queryEndBirth, | |
104 | + @RequestParam(value = "provinceId", required = false) String provinceId, | |
105 | + @RequestParam(value = "cityId", required = false) String cityId, | |
106 | + @RequestParam(value = "areaId", required = false) String areaId, | |
107 | + @RequestParam(value = "streetId", required = false) String streetId, | |
102 | 108 | Integer page, Integer limit, HttpServletRequest request) { |
103 | 109 | return babyHealthFacade.babystatListPrint(checkTime, queryNo, startCheckMonthAge, endCheckMonthAge, |
104 | - nextDate, highRisk, waskSon, checkDoctorId, page, limit, getUserId(request), level); | |
110 | + nextDate, highRisk, waskSon, checkDoctorId, page, limit, getUserId(request), level,queryStartBirth, | |
111 | + queryEndBirth,provinceId,cityId,areaId,streetId); | |
105 | 112 | } |
106 | 113 | |
107 | 114 | @RequestMapping(value = "/queryBabyHealthStatReport", method = RequestMethod.GET) |