package model // Comment 帖子评论 type Comment struct { Base PostID string `gorm:"size:24;index" json:"post_id"` UserID string `gorm:"size:24;index" json:"user_id"` AuthorName string `gorm:"size:64" json:"author_name"` Content string `gorm:"size:512" json:"content"` Status string `gorm:"size:16;default:published" json:"status"` }