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.
|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" )
// LiveStreams is the golang structure of table live_streams for DAO operations like Where/Data.
type LiveStreams struct { g.Meta `orm:"table:live_streams, do:true"` Id interface{} // 主键
Cover interface{} // 直播封面URL
Title interface{} // 直播标题
Avatar interface{} // 主播头像URL
PublisherId interface{} // 主播ID
StartTime *gtime.Time // 计划开播时间
Status interface{} // 开播状态(0=未开播,1=直播中)
}
|