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.

20 lines
1.3 KiB

5 months ago
  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. // LiveStreams is the golang structure for table live_streams.
  9. type LiveStreams struct {
  10. Id uint64 `json:"id" orm:"id" description:"主键"` // 主键
  11. Cover string `json:"cover" orm:"cover" description:"直播封面URL"` // 直播封面URL
  12. Title string `json:"title" orm:"title" description:"直播标题"` // 直播标题
  13. Avatar string `json:"avatar" orm:"avatar" description:"主播头像URL"` // 主播头像URL
  14. PublisherName string `json:"publisherName" orm:"publisher_name" description:"主播名字"` // 主播名字
  15. StartTime *gtime.Time `json:"startTime" orm:"start_time" description:"计划开播时间"` // 计划开播时间
  16. Status int `json:"status" orm:"status" description:"开播状态(0=未开播,1=直播中)"` // 开播状态(0=未开播,1=直播中)
  17. }