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.

27 lines
1.5 KiB

7 months ago
  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. // GoShows is the golang structure of table go_shows for DAO operations like Where/Data.
  10. type GoShows struct {
  11. g.Meta `orm:"table:go_shows, do:true"`
  12. Id interface{} // 展示内容唯一ID,自增
  13. Cover interface{} // 展示内容封面路径或相关标识,可为空
  14. Name interface{} // 展示内容名称,最大长度255字符,不能为空
  15. UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
  16. ReleaseTime *gtime.Time // 展示内容发布时间,可为空
  17. VideoDuration *gtime.Time // 展示内容视频时长,格式根据实际情况定,可为空
  18. ViewCount interface{} // 展示内容观看数量,初始值为0,可累加
  19. Comments interface{} // 展示内容评论数量,初始值为0,可累加
  20. Likes interface{} // 展示内容点赞数量,初始值为0,可累加
  21. FlagType interface{} // 展示内容标识类型,按业务规则确定,可为空
  22. ClubId interface{} // 关联的俱乐部ID,指向go_clubs表的id,可为空
  23. ChannelId interface{} // 关联的频道ID,指向go_channels表的id,可为空
  24. }