package model // Article 新手知识文章 type Article struct { Base Icon string `gorm:"size:16" json:"icon"` Title string `gorm:"size:128" json:"title"` Description string `gorm:"size:512" json:"description"` Content string `gorm:"type:text" json:"content"` Category string `gorm:"size:32" json:"category"` RelatedSheetType string `gorm:"size:32" json:"related_sheet_type"` Published bool `gorm:"default:true" json:"published"` }