docs(domain): 更新镀铬卷号字段为工序卷号

- 修改 WmsMaterialCoil 实体类中的字段注释
- 更新 WmsMaterialCoilAllExportVo 导出视图对象的 Excel 属性标注
- 修改 WmsMaterialCoilBo 业务对象的字段注释
- 更新控制器中列名映射的中文描述
- 修改 WmsMaterialCoilExportVo 导出视图对象的注释和 Excel 属性
- 更新 MyBatis 映射文件中的 SQL 注释
- 修改服务实现类中的查询条件注释
- 更新 WmsMaterialCoilVo 视图对象的字段注释
This commit is contained in:
2026-06-26 11:05:12 +08:00
parent 230b18eee6
commit 40c2f83589
8 changed files with 9 additions and 9 deletions

View File

@@ -210,7 +210,7 @@ public class WmsMaterialCoilController extends BaseController {
columns.put("scheduleThickness", "排产厚度"); columns.put("scheduleThickness", "排产厚度");
columns.put("theoreticalLength", "理论长度"); columns.put("theoreticalLength", "理论长度");
columns.put("rawMaterialThickness", "原料厚度"); columns.put("rawMaterialThickness", "原料厚度");
columns.put("chromePlateCoilNo", "镀铬卷号"); columns.put("chromePlateCoilNo", "工序卷号");
columns.put("thicknessDifference", "厚度差"); columns.put("thicknessDifference", "厚度差");
return R.ok(columns); return R.ok(columns);
} }

View File

@@ -230,7 +230,7 @@ public class WmsMaterialCoil extends BaseEntity {
private BigDecimal theoreticalLength; private BigDecimal theoreticalLength;
/** /**
* 镀铬卷号 * 工序卷号
*/ */
private String chromePlateCoilNo; private String chromePlateCoilNo;

View File

@@ -408,7 +408,7 @@ public class WmsMaterialCoilBo extends BaseEntity {
private BigDecimal theoreticalLength; private BigDecimal theoreticalLength;
/** /**
* 镀铬卷号 * 工序卷号
*/ */
private String chromePlateCoilNo; private String chromePlateCoilNo;

View File

@@ -237,7 +237,7 @@ public class WmsMaterialCoilAllExportVo {
@ExcelProperty(value = "理论长度") @ExcelProperty(value = "理论长度")
private String theoreticalLength; private String theoreticalLength;
@ExcelProperty(value = "镀铬卷号") @ExcelProperty(value = "工序卷号")
private String chromePlateCoilNo; private String chromePlateCoilNo;
@ExcelProperty(value = "实测长度") @ExcelProperty(value = "实测长度")

View File

@@ -229,9 +229,9 @@ public class WmsMaterialCoilExportVo {
private BigDecimal theoreticalLength; private BigDecimal theoreticalLength;
/** /**
* 镀铬卷号 * 工序卷号
*/ */
@ExcelProperty(value = "镀铬卷号") @ExcelProperty(value = "工序卷号")
private String chromePlateCoilNo; private String chromePlateCoilNo;
/** /**

View File

@@ -356,7 +356,7 @@ public class WmsMaterialCoilVo extends BaseEntity {
private BigDecimal theoreticalLength; private BigDecimal theoreticalLength;
/** /**
* 镀铬卷号 * 工序卷号
*/ */
private String chromePlateCoilNo; private String chromePlateCoilNo;

View File

@@ -1057,7 +1057,7 @@ public class WmsMaterialCoilServiceImpl implements IWmsMaterialCoilService {
qw.eq(bo.getScheduleThickness() != null, "mc.schedule_thickness", bo.getScheduleThickness()); qw.eq(bo.getScheduleThickness() != null, "mc.schedule_thickness", bo.getScheduleThickness());
// 理论长度 // 理论长度
qw.eq(bo.getTheoreticalLength() != null, "mc.theoretical_length", bo.getTheoreticalLength()); qw.eq(bo.getTheoreticalLength() != null, "mc.theoretical_length", bo.getTheoreticalLength());
// 镀铬卷号 // 工序卷号
qw.like(StringUtils.isNotBlank(bo.getChromePlateCoilNo()), "mc.chrome_plate_coil_no", bo.getChromePlateCoilNo()); qw.like(StringUtils.isNotBlank(bo.getChromePlateCoilNo()), "mc.chrome_plate_coil_no", bo.getChromePlateCoilNo());
// 生产开始时间 // 生产开始时间
qw.eq(bo.getProductionStartTime() != null, "mc.production_start_time", bo.getProductionStartTime()); qw.eq(bo.getProductionStartTime() != null, "mc.production_start_time", bo.getProductionStartTime());

View File

@@ -521,7 +521,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.schedule_thickness AS scheduleThickness, mc.schedule_thickness AS scheduleThickness,
-- 理论长度 -- 理论长度
mc.theoretical_length AS theoreticalLength, mc.theoretical_length AS theoreticalLength,
-- 镀铬卷号 -- 工序卷号
mc.chrome_plate_coil_no AS chromePlateCoilNo, mc.chrome_plate_coil_no AS chromePlateCoilNo,
-- 库存状态(中文显示) -- 库存状态(中文显示)
CASE CASE