From a15b2e24eec1c174bf6ec857ad13ce1cfd2b9413 Mon Sep 17 00:00:00 2001 From: chuck <361648887@qq.com> Date: Wed, 22 Jul 2026 12:45:21 +0800 Subject: [PATCH] =?UTF-8?q?chore(version):=20=E6=9B=B4=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=8F=B7=E8=87=B3=201.3.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 pom.xml 中的 revision 从 1.3.0-SNAPSHOT 更新为 1.3.1-SNAPSHOT - 将 README.md 中所有 starter 依赖的版本从 1.3.0 更新为 1.3.1 - 移除 MultiRepositoryFacade 中未使用的 ICrudRepository 导入 - 将 MultiRepositoryFacade 中的 delegates 字段访问权限从 private 改为 protected --- README.md | 16 ++++++++-------- pom.xml | 2 +- .../infra/repository/MultiRepositoryFacade.java | 3 +-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 134124c..809ca3a 100644 --- a/README.md +++ b/README.md @@ -223,56 +223,56 @@ mvn spring-boot:run -pl structure-infra-sample/structure-infra-sample-schedule cn.structured structure-infra-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-mybatis-plus-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-jpa-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-mongodb-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-elasticsearch-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-schedule-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-xxljob-starter - 1.3.0 + 1.3.1 cn.structured structure-infra-stream-starter - 1.3.0 + 1.3.1 ``` diff --git a/pom.xml b/pom.xml index 03149c5..b7e2766 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ pro项目父工程 - 1.3.0-SNAPSHOT + 1.3.1-SNAPSHOT 4.0.6 5.0.0 3.5.16 diff --git a/structure-infra-starter/src/main/java/cn/structure/infra/repository/MultiRepositoryFacade.java b/structure-infra-starter/src/main/java/cn/structure/infra/repository/MultiRepositoryFacade.java index 080a489..81658fc 100644 --- a/structure-infra-starter/src/main/java/cn/structure/infra/repository/MultiRepositoryFacade.java +++ b/structure-infra-starter/src/main/java/cn/structure/infra/repository/MultiRepositoryFacade.java @@ -1,6 +1,5 @@ package cn.structure.infra.repository; -import cn.structure.common.repository.ICrudRepository; import cn.structure.common.vo.ReqPage; import cn.structure.common.vo.ResPage; import lombok.Getter; @@ -12,7 +11,7 @@ @Slf4j public class MultiRepositoryFacade> extends RepositoryFacade { - private final Map delegates = new HashMap<>(); + protected final Map delegates = new HashMap<>(); @Getter @Setter