+ GetEffectiveActStoreSkuInfo

This commit is contained in:
gazebo
2019-07-05 17:45:42 +08:00
parent 4059b54203
commit 89fbeb6b14
5 changed files with 175 additions and 9 deletions

View File

@@ -48,8 +48,8 @@ type Act struct {
Source string `orm:"size(255)" json:"source"`
CreateType int `json:"createType"`
PricePercentage int `json:"pricePercentage"` // 单品级活动才有效
BeginAt time.Time `orm:"type(datetime);index;null" json:"beginAt"`
EndAt time.Time `orm:"type(datetime);index;null" json:"endAt"`
BeginAt time.Time `orm:"type(datetime);index" json:"beginAt"`
EndAt time.Time `orm:"type(datetime);index" json:"endAt"`
Remark string `orm:"size(255)" json:"remark"`
}