This commit is contained in:
邹宗楠
2026-03-31 17:36:17 +08:00
parent fa8c15a38f
commit 0e063e7a66

View File

@@ -12,9 +12,9 @@ type ActivityStation struct {
StoreSkuNum int64 `orm:"column(store_sku_num);size(48)" json:"store_sku_num"` // 门店商品数量 StoreSkuNum int64 `orm:"column(store_sku_num);size(48)" json:"store_sku_num"` // 门店商品数量
StoreRating float64 `orm:"column(store_rating);size(16)" json:"store_rating"` // 评分 StoreRating float64 `orm:"column(store_rating);size(16)" json:"store_rating"` // 评分
DeliveryFee string `orm:"column(delivery_fee);size(512)" json:"delivery_fee"` // 超过1.5km起送价不大于20 DeliveryFee string `orm:"column(delivery_fee);size(512)" json:"delivery_fee"` // 超过1.5km起送价不大于20
DeliveryFee2 string `orm:"column(delivery_fee2);size(4)" json:"delivery_fee2"` // 超过1.5km配送费不大于0 DeliveryFee2 string `orm:"column(delivery_fee2);size(16)" json:"delivery_fee2"` // 超过1.5km配送费不大于0
PromotionFee string `orm:"column(promotion_fee);size(4)" json:"promotion_fee"` // 推广费超过三十五元 PromotionFee string `orm:"column(promotion_fee);size(64)" json:"promotion_fee"` // 推广费超过三十五元
BusinessHours string `orm:"column(business_hours);size(4)" json:"business_hours"` // 营业时间超过11小时 BusinessHours string `orm:"column(business_hours);size(64)" json:"business_hours"` // 营业时间超过11小时
} }
type EffectiveStores struct { type EffectiveStores struct {
JxStoreID int `orm:"column(jx_store_id)" json:"jxStoreID"` // 根据VendorStoreID在本地系统里查询出来的 jxstoreid JxStoreID int `orm:"column(jx_store_id)" json:"jxStoreID"` // 根据VendorStoreID在本地系统里查询出来的 jxstoreid