feat(wms): 添加钢卷退火计划中的逻辑库区和炉火层级功能
- 在 WmsFurnacePlanCoil 实体类中新增逻辑库区ID和炉火层级字段 - 在 WmsFurnacePlanCoilBo 中添加对应的业务对象属性 - 在 WmsFurnacePlanCoilVo 中增加Excel导出相关字段和映射 - 更新 WmsFurnacePlanServiceImpl 服务实现类中的依赖注入 - 实现逻辑库区信息的查询和名称设置功能 - 将逻辑库区ID和炉火层级信息保存到数据库中
This commit is contained in:
@@ -25,6 +25,15 @@ public class WmsFurnacePlanCoilVo {
|
||||
@ExcelProperty(value = "钢卷ID")
|
||||
private Long coilId;
|
||||
|
||||
@ExcelProperty(value = "逻辑库区ID")
|
||||
private Long logicWarehouseId;
|
||||
|
||||
@ExcelProperty(value = "逻辑库区")
|
||||
private String logicWarehouseName;
|
||||
|
||||
@ExcelProperty(value = "炉火层级")
|
||||
private Integer furnaceLevel;
|
||||
|
||||
@ExcelProperty(value = "入场钢卷号")
|
||||
private String enterCoilNo;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user