feat: 接口设计: user&user.tag

This commit is contained in:
2024-06-12 21:51:51 +08:00
parent 44a0b6028e
commit 20b02ddd31
36 changed files with 597 additions and 101 deletions

23
pom.xml
View File

@@ -20,10 +20,12 @@
<lomstrcut-binding.version>0.2.0</lomstrcut-binding.version>
<poi.version>5.2.5</poi.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-text.version>1.12.0</commons-text.version>
<open-api.version>2.5.0</open-api.version>
<jedis.version>5.1.3</jedis.version>
<jwt.version>4.4.0</jwt.version>
<mybatis-plus.version>3.5.6</mybatis-plus.version>
<page-helper.version>2.1.0</page-helper.version>
</properties>
<dependencies>
@@ -53,6 +55,11 @@
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${page-helper.version}</version>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
@@ -82,12 +89,17 @@
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${commons-text.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springdoc</groupId>-->
<!-- <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>-->
<!-- <version>${open-api.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>${open-api.version}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
@@ -155,6 +167,7 @@
<version>${lomstrcut-binding.version}</version>
</path>
</annotationProcessorPaths>
<compilerArgs>--enable-preview</compilerArgs>
</configuration>
</plugin>