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.
21 lines
931 B
21 lines
931 B
// =================================================================================
|
|
// 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"
|
|
)
|
|
|
|
// GoLives is the golang structure of table go_lives for DAO operations like Where/Data.
|
|
type GoLives struct {
|
|
g.Meta `orm:"table:go_lives, do:true"`
|
|
Id interface{} // 直播唯一ID,自增
|
|
Cover interface{} // 直播封面路径或相关标识,可为空
|
|
UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
|
LiveName interface{} // 直播名称,最大长度255字符,不能为空
|
|
StartTime *gtime.Time // 直播开始时间,不能为空
|
|
Status interface{} // 直播状态,0:未开播 1:已开播,不能为空
|
|
}
|