util.go 292 B

123456789101112131415
  1. package model
  2. const (
  3. TypeVendor = 1 //厂商
  4. TypeBrand = 2 //品牌
  5. TypeModel = 3 //型号
  6. )
  7. type VendorDetail struct {
  8. Id int `json:"id"`
  9. ParentId int `json:"parent_id"`
  10. Vendor string `json:"vendor"`
  11. Brand string `json:"brand"`
  12. Model string `json:"model"`
  13. }