Lee-WineList/model/entity/category.go
2023-04-24 17:34:38 +08:00

9 lines
187 B
Go

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"`
}