Commit dabf28dae2980124fa5eea1ce45ba7dd3522733c
1 parent
d5762e13c8
Exists in
master
and in
6 other branches
其他高危
Showing 1 changed file with 6 additions and 6 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/StopPregnancyFacade.java
View file @
dabf28d
... | ... | @@ -413,12 +413,6 @@ |
413 | 413 | query.setYn(YnEnums.YES.getId()); |
414 | 414 | query.setEnable(1); |
415 | 415 | query.setId(id); |
416 | - List<Integer> lis =new ArrayList<>(); | |
417 | - lis.add(1); | |
418 | - lis.add(2); | |
419 | - lis.add(3); | |
420 | - lis.add(4); | |
421 | - lis.add(5); | |
422 | 416 | List<Users> dbusers = usersService.queryUsers(query); |
423 | 417 | |
424 | 418 | if (CollectionUtils.isNotEmpty(dbusers)) { |
... | ... | @@ -427,6 +421,12 @@ |
427 | 421 | usersQuery.setYn(YnEnums.YES.getId()); |
428 | 422 | usersQuery.setOrgId(dbuser.getOrgId()); |
429 | 423 | usersQuery.setEnable(1); |
424 | + List<Integer> lis =new ArrayList<>(); | |
425 | + lis.add(1); | |
426 | + lis.add(2); | |
427 | + lis.add(3); | |
428 | + lis.add(4); | |
429 | + lis.add(5); | |
430 | 430 | usersQuery.setZhichenIds(lis); |
431 | 431 | List<Users> users = usersService.queryUsers(usersQuery); |
432 | 432 |