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

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // FloatWindow is the golang structure of table float_window for DAO operations like Where/Data.
  10. type FloatWindow struct {
  11. g.Meta `orm:"table:float_window, do:true"`
  12. Id interface{} // 自增id
  13. Title interface{} // 标题
  14. Icon interface{} // 图标
  15. Start *gtime.Time // 开始日期
  16. End *gtime.Time // 结束日期
  17. Url interface{} // 活动地址
  18. Markets interface{} // 市场 my,sg,th,vi,can,hk
  19. MemberLimit interface{} // 用户权限 1:非网 2:半年版 3:终免
  20. CreatedAt *gtime.Time //
  21. UpdatedAt *gtime.Time //
  22. }