feat(project): 添加klp-da数据访问模块并集成到项目结构

- 在父pom.xml中添加klp-da模块依赖和版本配置
- 创建新的klp-da子模块及其完整的pom.xml配置文件
- 在主pom.xml的modules部分注册klp-da模块
- 配置klp-da模块的基础依赖包括common、lombok、mybatis-plus和fastjson库
- 更新项目整体的模块引用关系以包含新数据访问层
This commit is contained in:
2026-01-27 17:38:38 +08:00
parent be790edf04
commit bc31d5cda7
11 changed files with 51 additions and 0 deletions

View File

@@ -389,6 +389,11 @@
<!-- <artifactId>klp-hrm</artifactId>-->
<!-- <version>${klp-flowable-plus.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-da</artifactId>
<version>${klp-flowable-plus.version}</version>
</dependency>
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-crm</artifactId>
@@ -418,6 +423,7 @@
<module>klp-erp</module>
<!-- <module>klp-hrm</module>-->
<module>klp-crm</module>
<module>klp-da</module>
</modules>
<packaging>pom</packaging>