- add GoodsOrder.PickDeadline

This commit is contained in:
gazebo
2019-02-15 11:44:48 +08:00
parent 19c832e590
commit a8fc0af431
6 changed files with 6 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ type GoodsOrder struct {
OrderCreatedAt time.Time `orm:"type(datetime);index" json:"orderCreatedAt"` // 这里记录的是订单生效时间,即用户支付完成(货到付款即为下单时间)
OrderFinishedAt time.Time `orm:"type(datetime)" json:"orderFinishedAt"`
StatusTime time.Time `orm:"type(datetime)" json:"-"` // last status time
PickDeadline time.Time `orm:"type(datetime)" json:"pickDeadline"`
ModelTimeInfo `json:"-"`
OriginalData string `orm:"-" json:"-"`
Skus []*OrderSku `orm:"-" json:"-"`