feat(pt): 添加产品工艺模块及生产流程接口

- 在klp-generator模块中为GenTableServiceImpl添加创建时间倒序排序功能
- 创建全新的klp-pt模块用于产品和工艺管理功能
- 在父级pom.xml中注册klp-pt模块依赖
- 在klp-admin中添加klp-pt模块引用
- 添加生产工艺路线主实体、业务对象、控制器、服务接口及实现类
- 添加工艺各工序质检关口、工艺工序控制参数明细等10个新的服务接口定义
- 实现PtProcesse相关数据库映射和XML配置文件
- 添加PtProcessQualityGate等产品工艺相关领域模型和业务对象定义
This commit is contained in:
2026-07-02 14:55:53 +08:00
parent 2812c6b3b1
commit 1d8274000b
91 changed files with 6265 additions and 1 deletions

View File

@@ -415,6 +415,13 @@
<artifactId>klp-flow</artifactId>
<version>${klp-flowable-plus.version}</version>
</dependency>
<!-- 产品和工艺模块 -->
<dependency>
<groupId>com.klp</groupId>
<artifactId>klp-pt</artifactId>
<version>${klp-flowable-plus.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
@@ -442,6 +449,7 @@
<module>klp-aps</module>
<module>klp-cost</module>
<module>klp-flow</module>
<module>klp-pt</module>
</modules>
<packaging>pom</packaging>