16 lines
499 B
Go
16 lines
499 B
Go
package entity
|
|
|
|
import "online_code/common/types"
|
|
|
|
// CategoryBasic 分类表
|
|
type CategoryBasic struct {
|
|
types.BaseDbModel
|
|
Identity string `json:"identity" gorm:"column:identity;type:varchar(36);comment:'问题表的唯一标识'"`
|
|
Name string `json:"name" gorm:"column:name;type:varchar(100);comment:'分类名称'" `
|
|
ParentId int `json:"parent_id" gorm:"column:parent_id;type:int(11);comment:'父级ID'" `
|
|
}
|
|
|
|
func (table *CategoryBasic) TableName() string {
|
|
return "category_basic"
|
|
}
|