Lee-WineList/model/entity/category.go

9 lines
187 B
Go
Raw Normal View History

2023-04-24 17:34:38 +08:00
package entity
import "Lee-WineList/common/types"
type Category struct {
types.BaseDbModel
Name string `gorm:"column:name;type:varchar(255);comment:分类名;NOT NULL" json:"name"`
}