package model import "gorm.io/datatypes" // 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"` Images datatypes.JSON `json:"images"` Status string `gorm:"size:16;default:published" json:"status"` IsSelf bool `gorm:"-" json:"is_self"` // 计算字段:是不是我自己发的 }