package model import "time" type Brand struct { ID int `gorm:"column:id" ` BrandName string `gorm:"column:brandName" ` Enable int `gorm:"column:enable" ` CreateTime time.Time `gorm:"column:createTime" ` }