feat(WmsMaterialCoil): 添加生产时间和预留宽度字段支持

- 在 WmsMaterialCoil 实体类中新增生产开始时间、生产结束时间、生产耗时和预留宽度字段
- 在 WmsMaterialCoilBo 业务对象中添加对应的生产时间相关字段和格式化注解
- 在 WmsMaterialCoilVo 视图对象中增加生产时间字段和 Excel 导出支持
- 更新 MyBatis 映射文件中的结果映射和查询字段列表
- 在服务实现类中添加生产时间相关的查询条件过滤逻辑
This commit is contained in:
2026-03-17 13:54:17 +08:00
parent 7632c63185
commit 76aff879c7
5 changed files with 88 additions and 0 deletions

View File

@@ -24,6 +24,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="length" column="length"/>
<result property="actualLength" column="actual_length"/>
<result property="actualWidth" column="actual_width"/>
<result property="productionStartTime" column="production_start_time"/>
<result property="productionEndTime" column="production_end_time"/>
<result property="productionDuration" column="production_duration"/>
<result property="reservedWidth" column="reserved_width"/>
<result property="status" column="status"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
@@ -104,6 +108,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.length,
mc.actual_length,
mc.actual_width,
mc.production_start_time,
mc.production_end_time,
mc.production_duration,
mc.reserved_width,
mc.coating_type,
mc.temper_grade,
mc.business_purpose,
@@ -196,6 +204,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.length,
mc.actual_length,
mc.actual_width,
mc.production_start_time,
mc.production_end_time,
mc.production_duration,
mc.reserved_width,
mc.coating_type,
mc.temper_grade,
mc.business_purpose,