feat(domain): 添加材料卷实测厚度字段支持

- 在WmsMaterialCoil实体类中新增actualThickness字段
- 在WmsMaterialCoilAllExportVo导出对象中添加厚度导出映射
- 在WmsMaterialCoilBo业务对象中增加厚度查询条件支持
- 在WmsMaterialCoilExportVo导出对象中补充厚度字段定义
- 更新WmsMaterialCoilMapper.xml映射文件中的厚度字段映射
- 在WmsMaterialCoilServiceImpl服务实现中加入厚度查询逻辑
- 在WmsMaterialCoilVo视图对象中添加厚度字段定义
This commit is contained in:
2026-03-26 10:41:50 +08:00
parent 9dc8d589f0
commit 7e7f03e19f
7 changed files with 34 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ 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="actualThickness" column="actual_thickness"/>
<result property="productionStartTime" column="production_start_time"/>
<result property="productionEndTime" column="production_end_time"/>
<result property="productionDuration" column="production_duration"/>
@@ -110,6 +111,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.length,
mc.actual_length,
mc.actual_width,
mc.actual_thickness,
mc.production_start_time,
mc.production_end_time,
mc.production_duration,
@@ -207,6 +209,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.length,
mc.actual_length,
mc.actual_width,
mc.actual_thickness,
mc.production_start_time,
mc.production_end_time,
mc.production_duration,
@@ -506,6 +509,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.net_weight AS netWeight,
-- 长度
mc.length AS length,
-- 实测厚度
mc.actual_thickness AS actualThickness,
-- 镀层种类
mc.coating_type AS coatingType,
-- 调制度