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.

22 lines
843 B

1 month 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. // LiveStreams is the golang structure of table live_streams for DAO operations like Where/Data.
  10. type LiveStreams struct {
  11. g.Meta `orm:"table:live_streams, do:true"`
  12. Id interface{} // 主键
  13. Cover interface{} // 直播封面URL
  14. Title interface{} // 直播标题
  15. Avatar interface{} // 主播头像URL
  16. PublisherName interface{} // 主播名字
  17. StartTime *gtime.Time // 计划开播时间
  18. Status interface{} // 开播状态(0=未开播,1=直播中)
  19. }