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.

23 lines
1.6 KiB

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