first commit
This commit is contained in:
15
pkg/req/admin_act.go
Normal file
15
pkg/req/admin_act.go
Normal file
@ -0,0 +1,15 @@
|
||||
package req
|
||||
|
||||
import "servicebase/pkg/datasource/fields"
|
||||
|
||||
type News struct {
|
||||
ID string `gorm:"column:id;type:char(32);not null;uniqueIndex:id,priority:1;comment:业务ID" json:"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=禁用
|
||||
NewsDate fields.Time `gorm:"column:news_date;type:datetime;not null;comment:新闻时间" json:"news_date"` // 新闻时间
|
||||
}
|
||||
Reference in New Issue
Block a user