mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 01:01:52 +08:00
解决由于mybatis-plus无法过滤软删除导致角色去掉菜单缓存未刷新的问题。
解决由于mybatis-plus无法过滤软删除导致角色去掉菜单缓存未刷新的问题。
This commit is contained in:
parent
8683401c80
commit
bbea33e72e
@ -123,7 +123,7 @@ public class SysPermissionServiceImpl implements SysPermissionService {
|
||||
if (maxUpdateTime == null) { // 如果更新时间为空,说明 DB 一定有新数据
|
||||
log.info("[loadRoleMenuIfUpdate][首次加载全量角色与菜单的关联]");
|
||||
} else { // 判断数据库中是否有更新的角色与菜单的关联
|
||||
if (!roleMenuMapper.selectExistsByUpdateTimeAfter(maxUpdateTime)) {
|
||||
if (roleMenuMapper.selectExistsByUpdateTimeAfter(maxUpdateTime).size() == 0) {
|
||||
return null;
|
||||
}
|
||||
log.info("[loadRoleMenuIfUpdate][增量加载全量角色与菜单的关联]");
|
||||
|
Loading…
Reference in New Issue
Block a user