This commit is contained in:
gazebo
2019-08-21 16:42:36 +08:00
parent e626d4242f
commit 5e94bf4dbd
2 changed files with 5 additions and 5 deletions

View File

@@ -366,10 +366,10 @@ type StoreMap struct {
DeliveryFee int `json:"deliveryFee"`
DeliveryCompetition int8 `orm:"default(1)" json:"deliveryCompetition"` // 是否支持配送竞争
SyncStatus int8 `orm:"default(2)" json:"syncStatus"`
IsSync int8 `orm:"default(1)" json:"isSync"` // 是否同步
// FakeOpenStart time.Time `orm:"null" json:"fakeOpenStart"` // 假开店开始
// FakeOpenStop time.Time `orm:"null" json:"fakeOpenStop"` // 假开店结束
SyncStatus int8 `orm:"default(2)" json:"syncStatus"`
IsSync int8 `orm:"default(1)" json:"isSync"` // 是否同步
FakeOpenStart int16 `orm:"default(0)" json:"fakeOpenStart"` // 假开店开始
FakeOpenStop int16 `orm:"default(0)" json:"fakeOpenStop"` // 假开店结束
}
func (*StoreMap) TableUnique() [][]string {