20 lines
1.3 KiB

// =================================================================================
// 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" description:"主键"` // 主键
Cover string `json:"cover" orm:"cover" description:"直播封面URL"` // 直播封面URL
Title string `json:"title" orm:"title" description:"直播标题"` // 直播标题
Avatar string `json:"avatar" orm:"avatar" description:"主播头像URL"` // 主播头像URL
PublisherName string `json:"publisherName" orm:"publisher_name" description:"主播名字"` // 主播名字
StartTime *gtime.Time `json:"startTime" orm:"start_time" description:"计划开播时间"` // 计划开播时间
Status int `json:"status" orm:"status" description:"开播状态(0=未开播,1=直播中)"` // 开播状态(0=未开播,1=直播中)
}