chore: 将"多租户"描述统一为"租户"

- 修改了多个模块的描述、注释和配置文件中的"多租户"为"租户"
- 统一了相关术语,提高了代码和文档的一致性
This commit is contained in:
2025-07-12 11:05:00 +08:00
parent 4719a349dd
commit d32c05166d
9 changed files with 11 additions and 11 deletions

View File

@@ -197,7 +197,7 @@ continew-starter
├─ continew-starter-extension-datapermission数据权限模块
│ ├─ continew-starter-extension-datapermission-core核心模块
│ └─ continew-starter-extension-datapermission-mpMyBatis Plus
├─ continew-starter-extension-tenant租户模块)
├─ continew-starter-extension-tenant租户模块
│ ├─ continew-starter-extension-tenant-core核心模块
│ └─ continew-starter-extension-tenant-mpMyBatis Plus
└─ continew-starter-extension-crudCRUD 模块)

View File

@@ -292,13 +292,13 @@
<version>${revision}</version>
</dependency>
<!-- 扩展模块 - 租户 - MyBatis Plus ORM 模块 -->
<!-- 扩展模块 - 租户 - MyBatis Plus ORM 模块 -->
<dependency>
<groupId>top.continew.starter</groupId>
<artifactId>continew-starter-extension-tenant-mp</artifactId>
<version>${revision}</version>
</dependency>
<!-- 扩展模块 - 租户 - 核心模块 -->
<!-- 扩展模块 - 租户 - 核心模块 -->
<dependency>
<groupId>top.continew.starter</groupId>
<artifactId>continew-starter-extension-tenant-core</artifactId>

View File

@@ -150,7 +150,7 @@ public class PropertiesConstants {
public static final String DATA_PERMISSION = CONTINEW_STARTER + StringConstants.DOT + "data-permission";
/**
* 租户配置
* 租户配置
*/
public static final String TENANT = CONTINEW_STARTER + StringConstants.DOT + "tenant";

View File

@@ -13,7 +13,7 @@
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>ContiNew Starter 扩展模块 - 租户 - 核心模块</description>
<description>ContiNew Starter 扩展模块 - 租户 - 核心模块</description>
<dependencies>
<!-- TTL线程间传递 ThreadLocal异步执行时上下文传递的解决方案 -->

View File

@@ -19,7 +19,7 @@ package top.continew.starter.extension.tenant.annotation;
import java.lang.annotation.*;
/**
* 租户忽略注解
* 租户忽略注解
*
* @author Charles7c
* @since 2.7.0

View File

@@ -57,7 +57,7 @@ public class TenantProperties {
private Long superTenantId = 1L;
/**
* 忽略表(忽略拼接租户条件)
* 忽略表(忽略拼接租户条件)
*/
private List<String> ignoreTables;

View File

@@ -25,7 +25,7 @@ import top.continew.starter.core.constant.PropertiesConstants;
import top.continew.starter.extension.tenant.config.TenantProvider;
/**
* 租户 Web MVC 自动配置
* 租户 Web MVC 自动配置
*
* @author Charles7c
* @since 2.7.0

View File

@@ -13,10 +13,10 @@
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>ContiNew Starter 扩展模块 - 租户 - MyBatis Plus ORM 模块</description>
<description>ContiNew Starter 扩展模块 - 租户 - MyBatis Plus ORM 模块</description>
<dependencies>
<!-- 租户 - 核心模块 -->
<!-- 租户 - 核心模块 -->
<dependency>
<groupId>top.continew.starter</groupId>
<artifactId>continew-starter-extension-tenant-core</artifactId>

View File

@@ -13,7 +13,7 @@
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>ContiNew Starter 扩展模块 - 租户</description>
<description>ContiNew Starter 扩展模块 - 租户</description>
<modules>
<module>continew-starter-extension-tenant-core</module>