门店商品添加锁定概念

This commit is contained in:
gazebo
2019-12-18 11:55:48 +08:00
parent d1cb4a8c8b
commit 51217978ba
8 changed files with 59 additions and 11 deletions

View File

@@ -109,7 +109,11 @@ type StoreSkuBind struct {
EbaiPrice int `json:"ebaiPrice"`
MtwmPrice int `json:"mtwmPrice"`
JxPrice int `json:"jxPrice"`
// WscPrice int `json:"wscPrice"`
JdLockTime *time.Time `orm:"null" json:"jdLockTime"`
EbaiLockTime *time.Time `orm:"null" json:"ebaiLockTime"`
MtwmLockTime *time.Time `orm:"null" json:"mtwmLockTime"`
JxLockTime *time.Time `orm:"null" json:"jxLockTime"`
AutoSaleAt time.Time `orm:"type(datetime);null" json:"autoSaleAt"`