update 优化 修改角色如果未绑定用户则无需清理

This commit is contained in:
疯狂的狮子Li 2023-06-27 13:23:57 +08:00
parent 11485c2538
commit 2004a0cc64

View File

@ -434,6 +434,11 @@ public class SysRoleServiceImpl implements ISysRoleService {
@Override
public void cleanOnlineUserByRole(Long roleId) {
// 如果角色未绑定用户 直接返回
Long num = userRoleMapper.selectCount(new LambdaQueryWrapper<SysUserRole>().eq(SysUserRole::getRoleId, roleId));
if (num == 0) {
return;
}
List<String> keys = StpUtil.searchTokenValue("", 0, -1, false);
if (CollUtil.isEmpty(keys)) {
return;