Files
lckt-server/model/category/category.go
2025-07-31 02:41:09 +08:00

24 lines
1.1 KiB
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:是否首页显示;"` //是否首页显示
Url *string `json:"url" form:"url" gorm:"column:url;comment:类别链接;"` //链接
}
// TableName 类别 Category自定义表名 categories
func (Category) TableName() string {
return "categories"
}