|
|
@@ -161,8 +161,7 @@ public class UserInfoManage { |
|
|
|
if (CollUtil.isEmpty(userRoleList)) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
List<Long> roleIdList = iUserRoleService.list() |
|
|
|
.stream().map(UserRole::getRoleId).collect(Collectors.toList()); |
|
|
|
List<Long> roleIdList = userRoleList.stream().map(UserRoleVO::getId).collect(Collectors.toList()); |
|
|
|
|
|
|
|
List<Long> compliantUserIdList = iUserRoleService.list(Wrappers.lambdaQuery(UserRole.class) |
|
|
|
.in(UserRole::getRoleId, roleIdList)).stream().map(UserRole::getUserId).distinct().collect(Collectors.toList()); |
|
|
|