This commit is contained in:
邹宗楠
2024-10-14 12:41:49 +08:00
parent 1c136089da
commit e17042afd0
11 changed files with 166 additions and 53 deletions

View File

@@ -35,6 +35,12 @@ type StoreScore struct {
SaleSkuPrice int `orm:"column(sale_sku_price)" json:"saleSkuPrice"`
}
func (*StoreScore) TableIndex() [][]string {
return [][]string{
[]string{"StoreID"},
}
}
type StoreScoreEx struct {
StoreScore
StoreName string `json:"storeName"`