package model import ( "time" ) type BrokerAppHandbook struct { Id uint `gorm:"primaryKey"` Name string // 类型名称 Sort uint // 排序 HandbookItem []BrokerAppHandbookItem `gorm:"foreignKey:HandbookId"` CreatedAt time.Time UpdatedAt time.Time }