package res import "servicebase/pkg/datasource/fields" type ActNewsAll struct { ListType []ActNewsType `gorm:"-" json:"list_type"` ListBanner []ActNews `gorm:"-" json:"list_banner"` ListNews []ActNews `gorm:"-" json:"list_news"` } type ActNewsType struct { ID string `gorm:"column:id;type:char(32);not null;uniqueIndex:id,priority:1;comment:业务ID" json:"type_id"` // 业务ID Name string `gorm:"column:name;type:varchar(255);not null;comment:类型名称" json:"name"` // 类型名称 Sort int32 `gorm:"column:sort;type:int;not null;default:999;comment:排序" json:"sort"` // 排序 State int32 `gorm:"column:state;type:int;not null;default:1;comment:状态1=启用 2=禁用" json:"state"` // 状态1=启用 2=禁用 CreateAt fields.Time `gorm:"column:create_at;type:datetime;not null;default:CURRENT_TIMESTAMP;comment:创建时间" json:"create_at"` // 创建时间 UpdateAt fields.Time `gorm:"column:update_at;type:datetime;not null;default:CURRENT_TIMESTAMP;comment:更新时间" json:"update_at"` // 更新时间 } type ActNews struct { ID string `gorm:"column:id;type:char(32);not null;uniqueIndex:id,priority:1;comment:业务ID" json:"news_id"` // 业务ID TypeID string `gorm:"column:type_id;type:char(32);not null;comment:类型" json:"type_id"` // 类型 Title string `gorm:"column:title;type:varchar(255);not null;comment:标题" json:"title"` // 标题 HeadImg string `gorm:"column:head_img;type:varchar(255);not null;comment:头图" json:"head_img"` // 头图 Content string `gorm:"column:content;type:longtext;not null;comment:内容:富文本" json:"content"` // 内容:富文本 Sort int32 `gorm:"column:sort;type:int;not null;default:999;comment:排序" json:"sort"` // 排序 Position int32 `gorm:"column:position;type:int;not null;default:1;comment:位置1=列表 2=banner" json:"position"` // 位置1=列表 2=banner State int32 `gorm:"column:state;type:int;not null;default:1;comment:状态1=启用 2=禁用" json:"state"` // 状态1=启用 2=禁用 ViewCount int32 `gorm:"column:view_count;type:int;not null;default:1;comment:状态1=启用 2=禁用" json:"view_count"` // 浏览量 NewsDate fields.Date `gorm:"column:news_date;type:datetime;not null;comment:新闻时间" json:"news_date"` // 新闻时间 CreateBy string `gorm:"column:create_by;type:varchar(255);not null;comment:创建人" json:"create_by"` // 创建人 UpdateBy string `gorm:"column:update_by;type:varchar(255);not null;comment:更新人" json:"update_by"` // 更新人 DetailScheme string `gorm:"detail_scheme"` }