package model const ( TypeVendor = 1 //厂商 TypeBrand = 2 //品牌 TypeModel = 3 //型号 ) type VendorDetail struct { Id int `json:"id"` ParentId int `json:"parent_id"` Vendor string `json:"vendor"` Brand string `json:"brand"` Model string `json:"model"` }