Merge remote-tracking branch 'gitee/0.8.X' into 0.8.X

This commit is contained in:
2025-12-02 13:30:39 +08:00
26 changed files with 1830 additions and 224 deletions

View File

@@ -34,6 +34,10 @@ public class WmsDeliveryPlan extends BaseEntity {
* 计划日期
*/
private Date planDate;
/**
* 计划类型: 发货0收货1
*/
private Integer planType;
/**
* 备注
*/

View File

@@ -28,6 +28,7 @@ public class WmsCoilPendingActionBo extends BaseEntity {
/**
* 关联的钢卷ID
*/
// 对于入库操作这个时候还不存在钢卷因此无法关联钢卷ID因此先关联为0如果id为0则跟未关联是相同的
@NotNull(message = "关联的钢卷ID不能为空", groups = { AddGroup.class, EditGroup.class })
private Long coilId;

View File

@@ -33,6 +33,10 @@ public class WmsDeliveryPlanBo extends BaseEntity {
* 计划日期
*/
private Date planDate;
/**
* 计划类型
*/
private Integer planType;
/**
* 备注

View File

@@ -43,6 +43,12 @@ public class WmsDeliveryPlanVo extends BaseEntity {
@ExcelProperty(value = "计划日期")
private Date planDate;
/**
* 计划类型
*/
@ExcelProperty(value = "计划类型")
private Integer planType;
/**
* 备注
*/