feat(wms): 添加关联订单ID字段

- 在WmsDeliveryPlan实体类中新增orderId字段
- 在WmsDeliveryPlanBo业务对象中新增orderId字段
- 在WmsDeliveryPlanVo视图对象中新增orderId字段
This commit is contained in:
2025-12-15 11:29:53 +08:00
parent c941ea469d
commit d809fc489d
3 changed files with 10 additions and 0 deletions

View File

@@ -61,4 +61,7 @@ public class WmsDeliveryPlan extends BaseEntity {
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date auditTime;
//关联订单id
private Long orderId;
}

View File

@@ -55,4 +55,7 @@ public class WmsDeliveryPlanBo extends BaseEntity {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date auditTime;
//关联订单id
private Long orderId;
}

View File

@@ -84,4 +84,8 @@ public class WmsDeliveryPlanVo extends BaseEntity {
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date auditTime;
//关联订单id
private Long orderId;
}