|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// LiveStreams is the golang structure for table live_streams.
type LiveStreams struct { Id uint64 `json:"id" orm:"id" ` // 主键
Cover string `json:"cover" orm:"cover" ` // 直播封面URL
Title string `json:"title" orm:"title" ` // 直播标题
Avatar string `json:"avatar" orm:"avatar" ` // 主播头像URL
PublisherId uint64 `json:"publisherId" orm:"publisher_id" ` // 主播ID
StartTime *gtime.Time `json:"startTime" orm:"start_time" ` // 计划开播时间
Status int `json:"status" orm:"status" ` // 开播状态(0=未开播,1=直播中)
}
|