This commit is contained in:
苏尹岚
2021-02-25 10:51:23 +08:00
parent 578ba51f9a
commit 7f55d919f0

View File

@@ -360,7 +360,6 @@ type Store struct {
SoundPercentage int `json:"soundPercentage"` //打印机声音大小比例 SoundPercentage int `json:"soundPercentage"` //打印机声音大小比例
Banner string `orm:"size(9999)" json:"banner"` //门店商城bannar图 Banner string `orm:"size(9999)" json:"banner"` //门店商城bannar图
BrandID int `orm:"column(brand_id)" json:"brandID"` //品牌ID BrandID int `orm:"column(brand_id)" json:"brandID"` //品牌ID
CreateDeliveryType int `json:"createDeliveryType"` //默认0系统发单1为门店发单
} }
func (*Store) TableUnique() [][]string { func (*Store) TableUnique() [][]string {
@@ -438,6 +437,7 @@ type StoreMap struct {
DeliveryFeeDeductionSill int `json:"deliveryFeeDeductionSill"` DeliveryFeeDeductionSill int `json:"deliveryFeeDeductionSill"`
DeliveryFeeDeductionFee int `json:"deliveryFeeDeductionFee"` DeliveryFeeDeductionFee int `json:"deliveryFeeDeductionFee"`
DeliveryCompetition int8 `orm:"default(1)" json:"deliveryCompetition"` // 是否支持配送竞争 DeliveryCompetition int8 `orm:"default(1)" json:"deliveryCompetition"` // 是否支持配送竞争
CreateDeliveryType int `orm:"default(0)" json:"createDeliveryType"` //默认0系统发单1为门店发单
SyncStatus int8 `orm:"default(2)" json:"syncStatus"` SyncStatus int8 `orm:"default(2)" json:"syncStatus"`
IsSync int8 `orm:"default(1)" json:"isSync"` // 是否同步 IsSync int8 `orm:"default(1)" json:"isSync"` // 是否同步