| 1234567891011121314151617 | package modelsimport (	"gorm.io/gorm"	"html/template")type News struct {	gorm.Model	Title    string        `json:"title"`	Synopsis template.HTML `json:"synopsis"`	Detail   template.HTML `json:"detail"`	Types    string        `json:"types"`	IsActive bool          `json:"is_active"` // 是否激活	IsIndex  bool          `json:"is_index"`  // 是否首页	Image    string        `json:"image"`}
 |