refactor(core): 统一实体类引用并优化依赖配置

This commit is contained in:
lsym004933
2026-01-13 19:58:25 +08:00
parent 39c20b61e0
commit 5730ae5046
33 changed files with 75 additions and 37 deletions

11
pom.xml
View File

@@ -33,6 +33,7 @@
<jwt.version>0.9.1</jwt.version>
<nacos.client>2.0.3</nacos.client>
<seata.version>1.5.1</seata.version>
<dubbo.version>3.1.0</dubbo.version>
<kaptcha.version>2.3.2</kaptcha.version>
<swagger.version>3.0.0</swagger.version>
<redisson.version>3.15.4</redisson.version>
@@ -74,6 +75,11 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
<version>${dubbo.version}</version>
</dependency>
<!--Token生成与解析-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
@@ -300,6 +306,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>