This commit is contained in:
77
2024-05-14 18:54:08 +08:00
parent 517d91a0a8
commit 874b33557d
71 changed files with 1637 additions and 112 deletions

View File

@@ -4,7 +4,7 @@
<parent>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-component</artifactId>
<version>4.8.2</version>
<version>${revision}</version>
</parent>
<artifactId>ruoyi-component-core</artifactId>

View File

@@ -35,6 +35,8 @@ public interface CacheNames {
*/
String SYS_USER_NAME = "sys_user_name#30d";
String SYS_TENANT = GlobalConstants.GLOBAL_REDIS_KEY + "sys_tenant#30d";
/**
* 部门
*/
@@ -48,7 +50,7 @@ public interface CacheNames {
/**
* OSS配置
*/
String SYS_OSS_CONFIG = "sys_oss_config";
String SYS_OSS_CONFIG = GlobalConstants.GLOBAL_REDIS_KEY + "sys_oss_config";
/**
* 在线用户

View File

@@ -72,5 +72,11 @@ public interface Constants {
*/
String TOKEN = "token";
/**
* 顶级部门id
*/
Long TOP_PARENT_ID = 0L;
}

View File

@@ -0,0 +1,45 @@
package com.ruoyi.component.core.constant;
/**
* 租户常量信息
*
* @author Lion Li
*/
public interface TenantConstants {
/**
* 租户正常状态
*/
String NORMAL = "0";
/**
* 租户封禁状态
*/
String DISABLE = "1";
/**
* 超级管理员ID
*/
Long SUPER_ADMIN_ID = 1L;
/**
* 超级管理员角色 roleKey
*/
String SUPER_ADMIN_ROLE_KEY = "superadmin";
/**
* 租户管理员角色 roleKey
*/
String TENANT_ADMIN_ROLE_KEY = "admin";
/**
* 租户管理员角色名称
*/
String TENANT_ADMIN_ROLE_NAME = "管理员";
/**
* 默认租户ID
*/
String DEFAULT_TENANT_ID = "000000";
}

View File

@@ -3,4 +3,4 @@ com.ruoyi.component.core.config.AsyncConfig
com.ruoyi.component.core.config.RuoYiConfig
com.ruoyi.component.core.config.ThreadPoolConfig
com.ruoyi.component.core.config.ValidatorConfig
com.ruoyi.component.core.utils.SpringUtils
com.ruoyi.component.core.util.spring.SpringUtils