城市商品销量统计
This commit is contained in:
16
business/model/store_sku_sales.go
Normal file
16
business/model/store_sku_sales.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package model
|
||||
|
||||
type StoreSkuSales struct {
|
||||
SkuID int `json:"skuID"`
|
||||
SkuName string `json:"skuName"`
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user