Commit d7f3124e5552ca68f6499c479d2b607be608692a
1 parent
f0eaa85f50
Exists in
master
and in
6 other branches
数据处理
Showing 2 changed files with 4 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java
View file @
d7f3124
... | ... | @@ -4985,11 +4985,13 @@ |
4985 | 4985 | @ResponseBody |
4986 | 4986 | @RequestMapping(value = "/updateBabyDelete", method = RequestMethod.GET) |
4987 | 4987 | public String updateBabyDelete(@RequestParam(required = false) String hospitalId, |
4988 | - @RequestParam(required = false) String start) { | |
4988 | + @RequestParam(required = false) String start, | |
4989 | + @RequestParam(required = false) String end) { | |
4989 | 4990 | BabyModelQuery babyQuery = new BabyModelQuery(); |
4990 | 4991 | babyQuery.setHospitalId(hospitalId); |
4991 | 4992 | babyQuery.setYn(YnEnums.YES.getId()); |
4992 | 4993 | babyQuery.setBuildDateStart(DateUtil.parseYMD(start)); |
4994 | + babyQuery.setBuildDateEnd(DateUtil.parseYMD(end)); | |
4993 | 4995 | List<BabyModel> list = babyBookbuildingService.queryBabyBuildByCond(babyQuery); |
4994 | 4996 | if (CollectionUtils.isNotEmpty(list)) |
4995 | 4997 | { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/UsersController.java
View file @
d7f3124
... | ... | @@ -476,7 +476,7 @@ |
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | -// List<String> orgs = Arrays.asList("2100002261","2100002324"); | |
479 | +// List<String> orgs = Arrays.asList("2100002261","2100002324","196"); | |
480 | 480 | // if (!orgs.contains(u.getOrgId().toString())) { |
481 | 481 | // ResultUtils.buildParameterErrorResultAndWrite(response, "系统暂停使用"); |
482 | 482 | // return; |