feat(warning): 添加产线类型字段支持告警功能

- 在 WmsMaterialWarning 实体中新增 actionType 字段
- 在 WmsMaterialWarningBo 和 WmsMaterialWarningVo 中添加 actionType 属性
- 更新 WmsMaterialWarningMapper.xml 映射文件以包含 actionType 字段
- 在 WmsMaterialWarningServiceImpl 中注入 WmsCoilPendingActionMapper
- 实现告警查询时根据产线类型过滤的功能
- 在告警插入前查询并设置对应的产线类型信息
- 完善告警服务中的厚度和长度检查逻辑
This commit is contained in:
2026-06-10 17:44:56 +08:00
parent 4342215c00
commit cd2e4016a6
6 changed files with 44 additions and 1 deletions

View File

@@ -8,6 +8,7 @@
<result property="warningId" column="warning_id"/>
<result property="coilId" column="coil_id"/>
<result property="warningType" column="warning_type"/>
<result property="actionType" column="action_type"/>
<result property="theoreticalVal" column="theoretical_val"/>
<result property="actualVal" column="actual_val"/>
<result property="allowDeviation" column="allow_deviation"/>