|
@@ -77,7 +77,7 @@ public class LoginUserHolderImpl implements LoginUserHolder {
|
77
|
77
|
final String userId = getUserCode();
|
78
|
78
|
final List<UserOrgDTO> userOrgDTOS = userCenterDao.selectUserOrgByUserId(Sets.newHashSet(userId));
|
79
|
79
|
if (CollectionUtil.isNotEmpty(userOrgDTOS)) {
|
80
|
|
- return userOrgDTOS.stream().map(a -> a.getOrgId().toString()).collect(Collectors.toSet());
|
|
80
|
+ return userOrgDTOS.stream().map(a -> String.valueOf(a.getOrgId())).collect(Collectors.toSet());
|
81
|
81
|
}
|
82
|
82
|
return Collections.emptySet();
|
83
|
83
|
}
|