feat(WmsSchedulePlanDetail): 添加批次ID字段
- 在 WmsSchedulePlanDetail、WmsSchedulePlanDetailBo 和 WmsSchedulePlanDetailVo 类中添加 batchId 字段 - 更新 WmsSchedulePlanDetailMapper.xml,添加 batch_id 列的映射 - 在 WmsSchedulePlanDetailServiceImpl 中添加对 batchId 的查询条件
This commit is contained in:
@@ -56,8 +56,8 @@ public class WmsSchedulePlan extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Long priority;
|
private Long priority;
|
||||||
|
|
||||||
/**
|
// /**
|
||||||
* 工艺路线
|
// * 工艺路线
|
||||||
*/
|
// */
|
||||||
private String processRoute;
|
// private String processRoute;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -52,8 +52,8 @@ public class WmsSchedulePlanBo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Long priority;
|
private Long priority;
|
||||||
|
|
||||||
/**
|
// /**
|
||||||
* 工艺路线
|
// * 工艺路线
|
||||||
*/
|
// */
|
||||||
private String processRoute;
|
// private String processRoute;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,11 +72,11 @@ public class WmsSchedulePlanVo {
|
|||||||
@ExcelProperty(value = "优先级")
|
@ExcelProperty(value = "优先级")
|
||||||
private Long priority;
|
private Long priority;
|
||||||
|
|
||||||
/**
|
// /**
|
||||||
* 工艺路线
|
// * 工艺路线
|
||||||
*/
|
// */
|
||||||
@ExcelProperty(value = "工艺路线")
|
// @ExcelProperty(value = "工艺路线")
|
||||||
private String processRoute;
|
// private String processRoute;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 计划开始日期
|
* 计划开始日期
|
||||||
|
|||||||
Reference in New Issue
Block a user