Files
jx-callback/business/model/store_sku_sales.go
2019-09-20 11:12:18 +08:00

18 lines
479 B
Go

package model
type StoreSkuSales struct {
SkuID int `json:"skuID"`
SkuName string `json:"skuName"`
SkuImage string `json:"skuImage"`
SkuPrice string `json:"skuPrice"`
SkuAvgPrice string `json:"skuAvgPrice"`
BadCommentCnt int `json:"badCommentCnt"`
StoreSkuSalesCnt int `json:"storeSkuSalesCnt"`
CitySkuSalesCnt int `json:"citySkuSalesCnt"`
}
type SkuCount struct {
SkuID int `orm:"column(sku_id)"`
Count int
}