feat(WmsSchedulePlanDetail): 添加批次ID字段

- 在 WmsSchedulePlanDetail、WmsSchedulePlanDetailBo 和 WmsSchedulePlanDetailVo 类中添加 batchId 字段
- 更新 WmsSchedulePlanDetailMapper.xml,添加 batch_id 列的映射
- 在 WmsSchedulePlanDetailServiceImpl 中添加对 batchId 的查询条件
This commit is contained in:
2025-08-14 13:46:00 +08:00
parent 7518c68068
commit 85ae6c4efa
5 changed files with 18 additions and 0 deletions

View File

@@ -35,6 +35,10 @@ public class WmsSchedulePlanDetail extends BaseEntity {
* 产线ID
*/
private Long lineId;
/**
* 批次id
*/
private Long batchId;
/**
* 产品ID
*/

View File

@@ -35,6 +35,11 @@ public class WmsSchedulePlanDetailBo extends BaseEntity {
*/
private Long lineId;
/**
* 批次id
*/
private Long batchId;
/**
* 产品ID
*/

View File

@@ -40,6 +40,12 @@ public class WmsSchedulePlanDetailVo {
@ExcelProperty(value = "产线ID")
private Long lineId;
/**
* 批次id
*/
@ExcelProperty(value = "批次id")
private Long batchId;
/**
* 产品ID
*/