Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,56 +223,56 @@ mvn spring-boot:run -pl structure-infra-sample/structure-infra-sample-schedule
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- MyBatis Plus 适配 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-mybatis-plus-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- JPA 适配 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-jpa-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- MongoDB 适配 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-mongodb-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- Elasticsearch 适配 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-elasticsearch-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- 本地任务调度 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-schedule-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- XXL-Job 分布式任务调度 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-xxljob-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>

<!-- 流式事件路由 -->
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-infra-stream-starter</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<description>pro项目父工程</description>

<properties>
<revision>1.3.0-SNAPSHOT</revision>
<revision>1.3.1-SNAPSHOT</revision>
<spring-boot.version>4.0.6</spring-boot.version>
<spring-cloud-stream.version>5.0.0</spring-cloud-stream.version>
<mybatis-plus.version>3.5.16</mybatis-plus.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -12,7 +11,7 @@
@Slf4j
public class MultiRepositoryFacade<T, ID, D extends RepositoryDelegate<T, ID>> extends RepositoryFacade<T, ID, D> {

private final Map<RepositoryType, D> delegates = new HashMap<>();
protected final Map<RepositoryType, D> delegates = new HashMap<>();

@Getter
@Setter
Expand Down
Loading