- 更新表名和字段名为小写格式 - 修正字段类型以匹配实体类定义 - 新增缺失字段:scheme_type, down_payment_ratio等 - 添加索引优化查询性能 - 完善表和字段注释
86 lines
2.8 KiB
XML
86 lines
2.8 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-modules</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>LCXiaoguan-generator</artifactId>
|
|
|
|
<description>
|
|
generator 代码生成
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>LCXiaoguan-common-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>LCXiaoguan-common-doc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>LCXiaoguan-common-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>LCXiaoguan-common-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.dromara</groupId>
|
|
<artifactId>LCXiaoguan-common-log</artifactId>
|
|
</dependency>
|
|
|
|
<!--velocity代码生成使用模板 -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.anyline</groupId>
|
|
<artifactId>anyline-environment-spring-data-jdbc</artifactId>
|
|
<version>${anyline.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.anyline</groupId>
|
|
<artifactId>anyline-data-jdbc-mysql</artifactId>
|
|
<version>${anyline.version}</version>
|
|
</dependency>
|
|
|
|
<!-- anyline支持100+种类型数据库 添加对应的jdbc依赖与anyline对应数据库依赖包即可 -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.anyline</groupId>-->
|
|
<!-- <artifactId>anyline-data-jdbc-oracle</artifactId>-->
|
|
<!-- <version>${anyline.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.anyline</groupId>-->
|
|
<!-- <artifactId>anyline-data-jdbc-postgresql</artifactId>-->
|
|
<!-- <version>${anyline.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.anyline</groupId>-->
|
|
<!-- <artifactId>anyline-data-jdbc-mssql</artifactId>-->
|
|
<!-- <version>${anyline.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
</project>
|
|
|