29 lines
1.0 KiB
Go
Executable File
29 lines
1.0 KiB
Go
Executable File
// =================================================================================
|
|
// 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{} // 活动封面图
|
|
Video interface{} // 活动视频
|
|
StartTime interface{} // 活动开始时间
|
|
EndTime interface{} // 活动结束时间
|
|
CategoryId interface{} // 分类id
|
|
Revision interface{} // 乐观锁
|
|
CreatedBy interface{} // 创建人
|
|
CreatedTime *gtime.Time // 创建时间
|
|
UpdatedBy interface{} // 更新人
|
|
UpdatedTime *gtime.Time // 更新时间
|
|
}
|