23 lines
969 B
Go
23 lines
969 B
Go
// 自动生成模板Category
|
|
package category
|
|
|
|
import (
|
|
"git.echol.cn/loser/lckt/global"
|
|
)
|
|
|
|
// Category 分类
|
|
type Category struct {
|
|
global.GVA_MODEL
|
|
Name *string `json:"name" form:"name" gorm:"column:name;comment:类别名称;" binding:"required"` //名称
|
|
Order *int `json:"order" form:"order" gorm:"column:order;comment:排序字段;"` //排序
|
|
Active *bool `json:"active" form:"active" gorm:"column:active;comment:是否激活;"` //状态
|
|
ParentId *int `json:"parentId" form:"parentId" gorm:"column:parent_id;comment:父类别ID;"` //父ID
|
|
Icon *string `json:"icon" form:"icon" gorm:"column:icon;comment:类别图标;"` //图标
|
|
IndexTrue *bool `json:"index" form:"index" gorm:"column:index;comment:是否首页显示;"` //是否首页显示
|
|
}
|
|
|
|
// TableName 类别 Category自定义表名 categories
|
|
func (Category) TableName() string {
|
|
return "categories"
|
|
}
|