package announcement import ( "time" "gorm.io/gorm" ) type Announcement struct { ID uint `json:"id" gorm:"primaryKey"` CreatedAt time.Time `json:"createdAt" gorm:"index"` UpdatedAt time.Time `json:"updatedAt"` DeletedAt gorm.DeletedAt `json:"-" gorm:"index"` Title string `json:"title" gorm:"not null"` Content string `json:"content" gorm:"type:text;not null"` }