feat(WmsFurnacePlanCoil): 退火添加合同号字段支持

- 在 WmsFurnacePlanCoil 实体类中新增 contractNo 字段
- 在 WmsFurnacePlanCoilBo 业务对象中添加 contractNo 属性
- 更新 MyBatis 映射文件,添加 contract_no 字段映射
- 在服务层查询逻辑中加入合同号条件过滤
- 在 WmsFurnacePlanCoilVo 视图对象中添加合同号 Excel 导出支持
This commit is contained in:
2026-06-25 11:07:00 +08:00
parent fa84bae4f2
commit e084e56841
5 changed files with 15 additions and 0 deletions

View File

@@ -46,6 +46,11 @@ public class WmsFurnacePlanCoil extends BaseEntity {
*/
private Integer furnaceLevel;
/**
* 合同号
*/
private String contractNo;
/**
* 删除标志0=正常1=已删除)
*/

View File

@@ -42,6 +42,11 @@ public class WmsFurnacePlanCoilBo extends BaseEntity {
*/
private Integer furnaceLevel;
/**
* 合同号
*/
private String contractNo;
/**
* 钢卷ID列表逗号分隔
*/

View File

@@ -34,6 +34,9 @@ public class WmsFurnacePlanCoilVo {
@ExcelProperty(value = "炉火层级")
private Integer furnaceLevel;
@ExcelProperty(value = "合同号")
private String contractNo;
@ExcelProperty(value = "入场钢卷号")
private String enterCoilNo;

View File

@@ -64,6 +64,7 @@ public class WmsFurnacePlanCoilServiceImpl implements IWmsFurnacePlanCoilService
lqw.eq(bo.getCoilId() != null, WmsFurnacePlanCoil::getCoilId, bo.getCoilId());
lqw.eq(bo.getLogicWarehouseId() != null, WmsFurnacePlanCoil::getLogicWarehouseId, bo.getLogicWarehouseId());
lqw.eq(bo.getFurnaceLevel() != null, WmsFurnacePlanCoil::getFurnaceLevel, bo.getFurnaceLevel());
lqw.eq(bo.getContractNo() != null, WmsFurnacePlanCoil::getContractNo, bo.getContractNo());
return lqw;
}

View File

@@ -10,6 +10,7 @@
<result property="coilId" column="coil_id"/>
<result property="logicWarehouseId" column="logic_warehouse_id"/>
<result property="furnaceLevel" column="furnace_level"/>
<result property="contractNo" column="contract_no"/>
<result property="delFlag" column="del_flag"/>
<result property="createBy" column="create_by"/>
<result property="updateBy" column="update_by"/>