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 }