This commit is contained in:
苏尹岚
2021-03-04 16:50:03 +08:00
parent dda3d11583
commit 3735a0fcaa

View File

@@ -497,6 +497,7 @@ type StoreAcctOrder struct {
OrderType int `json:"orderType"` OrderType int `json:"orderType"`
Status int `json:"status"` // 参见OrderStatus*相关的常量定义 // 重复新订单消息数这个一般不是由于消息重发造成的消息重发由OrderStatus过滤一般是业务逻辑造成的 Status int `json:"status"` // 参见OrderStatus*相关的常量定义 // 重复新订单消息数这个一般不是由于消息重发造成的消息重发由OrderStatus过滤一般是业务逻辑造成的
OrderFinishedAt time.Time `orm:"type(datetime)" json:"orderFinishedAt"` OrderFinishedAt time.Time `orm:"type(datetime)" json:"orderFinishedAt"`
GoodsVendorOrderID string `orm:"column(goods_vendor_order_id);size(48)" json:"goodsVendorOrderID"` //goodsOrder表的vendorOrderID主动充值此值为空从配送管理中余额不足充值则是该订单号
} }
func (v *StoreAcctOrder) TableUnique() [][]string { func (v *StoreAcctOrder) TableUnique() [][]string {