This commit is contained in:
苏尹岚
2021-02-02 11:41:17 +08:00
parent faef2c35a8
commit 00766183c7
4 changed files with 13 additions and 7 deletions

View File

@@ -766,8 +766,11 @@ func (*StoreAudit) TableIndex() [][]string {
type Brand struct {
ModelIDCULD
Name string `orm:"size(255)" json:"name"` //品牌名
Logo string `orm:"size(255)" json:"logo"` //品牌logo
Name string `orm:"size(255)" json:"name"` //品牌名
Logo string `orm:"size(255)" json:"logo"` //品牌logo
BrandType int `json:"brandType"` //品牌类型
IsOpen int `json:"isOpen"` //主要三方配送用是否配送默认0表示打开1表示关
EbaiSupplierID int `orm:"column(ebai_supplier_id)" json:"ebaiSupplierID"` //饿百供应商ID
}
func (*Brand) TableUnique() [][]string {