9 lines
187 B
Go
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"`
|
||
|
}
|