| | |
| | | public List<Long> getAll(){ |
| | | SysUser user = SecurityUtils.getLoginUser().getUser(); |
| | | Long userId = user.getUserId(); |
| | | |
| | | List<Long> allList = new ArrayList<>(); |
| | | Long source = zfShareDataService.getSource(userId); |
| | | List<Long> allList = zfShareDataService.getAllPerson(Collections.singletonList(source)); |
| | | allList.add(source); |
| | | allList.addAll(zfShareDataService.getAllPerson(Collections.singletonList(source))); |
| | | |
| | | List<Long> collect = allList.stream().distinct().collect(Collectors.toList()); |
| | | |
| | | List<Long> all = new ArrayList<>(); |