feat(wms): 添加钢卷异常记录中的产线名称字段

- 在 WmsCoilAbnormal 实体类中新增 productionLine 字段
- 在 WmsCoilAbnormalBo 中添加 productionLine 查询条件字段
- 更新数据库映射文件 WmsCoilAbnormalMapper.xml 映射关系
- 在服务层实现类中添加产线名称查询过滤逻辑
- 在 WmsCoilAbnormalVo 视图对象中添加产线名称导出支持
This commit is contained in:
2026-03-30 12:57:19 +08:00
parent 15058727d0
commit cb9998e0c4
5 changed files with 19 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
<resultMap type="com.klp.domain.WmsCoilAbnormal" id="WmsCoilAbnormalResult">
<result property="abnormalId" column="abnormal_id"/>
<result property="coilId" column="coil_id"/>
<result property="productionLine" column="production_line"/>
<result property="position" column="position"/>
<result property="length" column="length"/>
<result property="startPosition" column="start_position"/>