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

@@ -35,6 +35,11 @@ public class WmsMaterialWarningBo extends BaseEntity {
*/
private String warningType;
/**
* 产线类型
*/
private Integer actionType;
/**
* 理论值
*/