package models import ( "time" ) //模块样式表 type ModuleStyle struct { Id int64 `json:"id"` ModuleServiceId int64 `json:"module_service_id" description:"服务模块的id"` StyleName string `json:"style_name" description:"样式名字"` StyleImage string `json:"style_image" description:"样式图片"` IsDelete bool `json:"is_delete" xorm:"default(0)" description:"是否已删除"` CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"` UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"` }