package article import "time" type Document struct { Title string `json:"title"` Content string `json:"content"` AuthorId string `json:"author_id"` Status int `json:"status"` TotalVotes int `json:"total_votes"` IsMultiple int `json:"is_multiple"` MaxChoices int `json:"max_choices"` ViewCount int `json:"view_count"` CreatedAt time.Time `json:"created_at"` }