brand.go 239 B

12345678910
  1. package model
  2. import "time"
  3. type Brand struct {
  4. ID int `gorm:"column:id" `
  5. BrandName string `gorm:"column:brandName" `
  6. Enable int `gorm:"column:enable" `
  7. CreateTime time.Time `gorm:"column:createTime" `
  8. }