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.0 KiB

  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. // Shows is the golang structure of table shows for DAO operations like Where/Data.
  10. type Shows struct {
  11. g.Meta `orm:"table:shows, do:true"`
  12. Id interface{} // 主键
  13. Cover interface{} // 封面图URL
  14. Title interface{} // 标题
  15. PublisherId interface{} // 发布人ID
  16. PublisherAvatar interface{} // 发布人头像URL
  17. PublishTime *gtime.Time // 发布时间
  18. ViewCount interface{} // 观看人数
  19. CommentCount interface{} // 评论数
  20. LikeCount interface{} // 点赞数
  21. Type interface{} // 类型(1=文章,2=视频)
  22. ClubId interface{} // 所属俱乐部(0=无,1=博古)
  23. VideoDuration interface{} // 视频时长(秒)
  24. }