【7.3.2】【system】更新system的一些缓存前缀

pull/41/head
fengshuonan 2022-11-09 19:17:03 +08:00
parent e2f86878d0
commit 7a7db3aaae
2 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@ public interface StatisticsCacheConstants {
/**
*
*/
String INTERFACE_STATISTICS_PREFIX = "inter:";
String INTERFACE_STATISTICS_PREFIX = "inter";
/**
*

View File

@ -35,7 +35,7 @@ public interface SystemCachesConstants {
/**
*
*/
String USER_CACHE_PREFIX = "user:";
String USER_CACHE_PREFIX = "user";
/**
* (1)
@ -45,31 +45,31 @@ public interface SystemCachesConstants {
/**
*
*/
String USER_ROLES_CACHE_PREFIX = "user_roles:";
String USER_ROLES_CACHE_PREFIX = "user_roles";
/**
*
*/
String ROLE_INFO_CACHE_PREFIX = "role:";
String ROLE_INFO_CACHE_PREFIX = "role";
/**
*
*/
String USER_ORG_CACHE_PREFIX = "user_org:";
String USER_ORG_CACHE_PREFIX = "user_org";
/**
*
*/
String ROLE_RESOURCE_CACHE_PREFIX = "role_resource:";
String ROLE_RESOURCE_CACHE_PREFIX = "role_resource";
/**
*
*/
String ROLE_DATA_SCOPE_CACHE_PREFIX = "role_data_scope:";
String ROLE_DATA_SCOPE_CACHE_PREFIX = "role_data_scope";
/**
*
*/
String SYSTEM_THEME_CACHE_PREFIX = "system_cache:";
String SYSTEM_THEME_CACHE_PREFIX = "system_cache";
}