Accept Merge Request #6: (don -> mark)
Merge Request: 城市商品销量统计 Created By: @zhudan Accepted By: @xujianhua URL: https://rosydev.coding.net/p/jx-callback/d/jx-callback/git/merge/6
This commit is contained in:
17
business/model/store_sku_sales.go
Normal file
17
business/model/store_sku_sales.go
Normal file
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user