// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // Activity is the golang structure of table hg_activity for DAO operations like Where/Data. type Activity struct { g.Meta `orm:"table:hg_activity, do:true"` Id interface{} // id Title interface{} // 活动标题 Introduction interface{} // 活动介绍 Cover interface{} // 活动封面图 Imgs interface{} // 说明图片 Banner interface{} // 活动头图 Video interface{} // 活动视频 StartTime *gtime.Time // 活动开始时间 EndTime *gtime.Time // 活动结束时间 Extra interface{} // 扩展字段 Attachment interface{} // 活动附件 Status interface{} // 活动状态 Revision interface{} // 乐观锁 CreatedBy interface{} // 创建人 CreatedTime *gtime.Time // 创建时间 UpdatedBy interface{} // 更新人 UpdatedTime *gtime.Time // 更新时间 }