feat(wms): 添加关联订单ID字段
- 在WmsDeliveryPlan实体类中新增orderId字段 - 在WmsDeliveryPlanBo业务对象中新增orderId字段 - 在WmsDeliveryPlanVo视图对象中新增orderId字段
This commit is contained in:
@@ -61,4 +61,7 @@ public class WmsDeliveryPlan extends BaseEntity {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date auditTime;
|
private Date auditTime;
|
||||||
|
|
||||||
|
//关联订单id
|
||||||
|
private Long orderId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,4 +55,7 @@ public class WmsDeliveryPlanBo extends BaseEntity {
|
|||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date auditTime;
|
private Date auditTime;
|
||||||
|
|
||||||
|
//关联订单id
|
||||||
|
private Long orderId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -84,4 +84,8 @@ public class WmsDeliveryPlanVo extends BaseEntity {
|
|||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date auditTime;
|
private Date auditTime;
|
||||||
|
|
||||||
|
|
||||||
|
//关联订单id
|
||||||
|
private Long orderId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user