feat:数据库连接、序列化日期

This commit is contained in:
lbw
2025-12-09 19:27:04 +08:00
parent 247a3c9a5e
commit 0d0cf2ef5b
16 changed files with 336 additions and 19 deletions

View File

@@ -30,6 +30,11 @@
<artifactId>enlish-spring-boot-starter-biz-operationlog</artifactId>
</dependency>
<dependency>
<groupId>com.yinlihupo.framework.jackson</groupId>
<artifactId>enlish-spring-boot-starter-jackson</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
@@ -40,10 +45,30 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
</dependency>
<!-- MySQL 驱动 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 代码生成器 -->
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>