|
@@ -105,7 +105,7 @@ public class UserServiceImpl extends ServiceImpl<IUserMapper, User> implements I
|
|
|
|
|
|
private List<UserVo> getUserVo(List<User> userList){
|
|
|
List<UserVo> voList = new ArrayList<>();
|
|
|
- Set<Long> collect = voList.stream().map(UserVo::getId).collect(Collectors.toSet());
|
|
|
+ Set<Long> collect = userList.stream().map(User::getId).collect(Collectors.toSet());
|
|
|
HashMap<Long, JyUser> mapByUserIds = jyUserService.getMapByUserIds(collect);
|
|
|
if(userList.size() >0){
|
|
|
for (User user :userList) {
|