- 更新表名和字段名为小写格式 - 修正字段类型以匹配实体类定义 - 新增缺失字段:scheme_type, down_payment_ratio等 - 添加索引优化查询性能 - 完善表和字段注释
54 lines
1.6 KiB
XML
54 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>LCXiaoguan-common-mybatis</artifactId>
|
||
|
||
<description>
|
||
LCXiaoguan-common-mybatis 数据库服<E5BA93>?
|
||
</description>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-core</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-satoken</artifactId>
|
||
</dependency>
|
||
|
||
<!-- dynamic-datasource 多数据源-->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-jsqlparser</artifactId>
|
||
</dependency>
|
||
|
||
<!-- sql性能分析插件 -->
|
||
<dependency>
|
||
<groupId>p6spy</groupId>
|
||
<artifactId>p6spy</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|
||
|