You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
914 B
25 lines
914 B
// =================================================================================
|
|
// 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"
|
|
)
|
|
|
|
// FloatWindow is the golang structure of table float_window for DAO operations like Where/Data.
|
|
type FloatWindow struct {
|
|
g.Meta `orm:"table:float_window, do:true"`
|
|
Id interface{} // 自增id
|
|
Title interface{} // 标题
|
|
Icon interface{} // 图标
|
|
Start *gtime.Time // 开始日期
|
|
End *gtime.Time // 结束日期
|
|
Url interface{} // 活动地址
|
|
Markets interface{} // 市场 my,sg,th,vi,can,hk
|
|
MemberLimit interface{} // 用户权限 1:非网 2:半年版 3:终免
|
|
CreatedAt *gtime.Time //
|
|
UpdatedAt *gtime.Time //
|
|
}
|