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
998 B
20 lines
998 B
// =================================================================================
|
|
// 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=直播中)
|
|
}
|