package models
import (
"gorm.io/gorm"
"html/template"
)
type News struct {
gorm.Model
Title string `json:"title"`
Synopsis template.HTML `json:"synopsis"`
Detail string `json:"detail"`
Types string `json:"types"`
IsActive bool `json:"is_active"` // 是否激活
Image string `json:"image"`
}
type NewsDto struct {
ID uint `json:"id"`
Title string `json:"title"`
Synopsis template.HTML `json:"synopsis"`
Detail string `json:"detail"`
Types string `json:"types"`
IsActive bool `json:"is_active"` // 是否激活
Image string `json:"image"`
}