【新增】模型模块接口

This commit is contained in:
MichaelWin
2025-12-22 18:35:58 +08:00
parent e96c54c328
commit 77c1155b38
53 changed files with 1426 additions and 58 deletions

View File

@@ -34,6 +34,8 @@ dependencies {
implementation 'com.baomidou:mybatis-plus-generator' // 代码生成器
implementation("com.baomidou:mybatis-plus-jsqlparser") // SQL 解析器
implementation 'cn.dev33:sa-token-spring-boot-starter:1.44.0' // 权限认证
implementation 'cn.dev33:sa-token-redis-template:1.44.0' // Sa-Token 整合 RedisTemplate
implementation 'org.apache.commons:commons-pool2' // 提供 Redis 连接池
implementation 'com.alibaba:druid-spring-boot-starter:1.2.27' // 数据库连接池
implementation 'org.lionsoul:ip2region:2.7.0' // IP 归属地
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb' // mongodb
@@ -43,7 +45,12 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok' // Lombok 注解处理
testImplementation 'org.springframework.boot:spring-boot-starter-test' // 测试框架
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' // thymeleaf模版引擎
implementation 'com.aliyun.oss:aliyun-sdk-oss:3.18.1' // OSS SDK
implementation 'com.aliyun.oss:aliyun-sdk-oss:3.18.3' // OSS SDK
implementation 'cn.hutool:hutool-all:5.8.40' // hutool工具包
implementation 'io.springfox:springfox-swagger2:2.10.5'
implementation 'com.github.xiaoymin:knife4j-openapi2-spring-boot-starter:4.4.0'
}
tasks.named('test') {