update 优化 修改角色如果未绑定用户则无需清理
parent
e8672f1269
commit
610883b0db
|
|
@ -445,6 +445,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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue