This commit is contained in:
suyl
2021-05-20 18:10:46 +08:00
parent 80e08d5b18
commit 20e61f1317
6 changed files with 113 additions and 31 deletions

View File

@@ -79,3 +79,15 @@ func (*PageStore) TableIndex() [][]string {
[]string{"VendorID", "VendorStoreID"},
}
}
type PageBrand struct {
ModelIDCUL
BrandName string `json:"brandName"`
}
func (*PageBrand) TableIndex() [][]string {
return [][]string{
[]string{"BrandName"},
}
}