【7.3.2】【system】组织机构开启租户分割缓存

pull/41/head
fengshuonan 2022-11-09 19:22:50 +08:00
parent 7a7db3aaae
commit 268cd29f93
2 changed files with 10 additions and 0 deletions

View File

@ -46,4 +46,9 @@ public class UserOrgMemoryCache extends AbstractMemoryCacheOperator<SysUserOrgDT
return SystemCachesConstants.USER_ORG_CACHE_PREFIX;
}
@Override
public Boolean divideByTenant() {
return true;
}
}

View File

@ -46,4 +46,9 @@ public class UserOrgRedisCache extends AbstractRedisCacheOperator<SysUserOrgDTO>
return SystemCachesConstants.USER_ORG_CACHE_PREFIX;
}
@Override
public Boolean divideByTenant() {
return true;
}
}