- 更新表名和字段名为小写格式 - 修正字段类型以匹配实体类定义 - 新增缺失字段:scheme_type, down_payment_ratio等 - 添加索引优化查询性能 - 完善表和字段注释
86 lines
2.7 KiB
XML
86 lines
2.7 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>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<packaging>jar</packaging>
|
||
<artifactId>LCXiaoguan-workflow</artifactId>
|
||
|
||
<description>
|
||
工作流模<E6B581>?
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-sse</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-doc</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-mail</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-sms</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>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-idempotent</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-excel</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-translation</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-tenant</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara</groupId>
|
||
<artifactId>LCXiaoguan-common-security</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara.warm</groupId>
|
||
<artifactId>warm-flow-mybatis-plus-sb3-starter</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.dromara.warm</groupId>
|
||
<artifactId>warm-flow-plugin-ui-sb-web</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|
||
|
||
|