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.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// FloatWindow is the golang structure for table float_window.
type FloatWindow struct { Id int `json:"id" orm:"id" description:"自增id"` // 自增id
Title string `json:"title" orm:"title" description:"标题"` // 标题
Icon string `json:"icon" orm:"icon" description:"图标"` // 图标
Start *gtime.Time `json:"start" orm:"start" description:"开始日期"` // 开始日期
End *gtime.Time `json:"end" orm:"end" description:"结束日期"` // 结束日期
Url string `json:"url" orm:"url" description:"活动地址"` // 活动地址
Markets string `json:"markets" orm:"markets" description:"市场 my,sg,th,vi,can,hk"` // 市场 my,sg,th,vi,can,hk
MemberLimit string `json:"memberLimit" orm:"member_limit" description:"用户权限 1:非网 2:半年版 3:终免"` // 用户权限 1:非网 2:半年版 3:终免
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
}
|