得到门店总分排名

This commit is contained in:
Rosy-zhudan
2019-09-23 16:58:02 +08:00
parent 06a155daf2
commit 2814b0c55a
5 changed files with 142 additions and 2 deletions

View File

@@ -49,6 +49,13 @@ type WeeklyStoreScore struct {
Level int `json:"level"`
}
type StoreTotalScore struct {
StoreID int `orm:"column(store_id)" json:"storeID"`
StoreName string `orm:"column(store_name)" json:"storeName"`
StoreScore int `orm:"column(store_score)" json:"storeScore"`
CityName string `orm:"column(city_name)" json:"cityName"`
}
type StoreCount struct {
StoreID int `orm:"column(store_id)"`
Count int