This commit is contained in:
苏尹岚
2021-02-08 08:58:44 +08:00
parent ba41fe49a7
commit 725458dfe3

View File

@@ -783,3 +783,15 @@ func (*Brand) TableUnique() [][]string {
[]string{"Name"},
}
}
type BrandStroe struct {
ModelIDCULD
Name string `orm:"size(255)" json:"name"` //门店名
}
func (*BrandStroe) TableUnique() [][]string {
return [][]string{
[]string{"Name"},
}
}