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.
27 lines
1.5 KiB
27 lines
1.5 KiB
// =================================================================================
|
|
// 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"
|
|
)
|
|
|
|
// GoShows is the golang structure of table go_shows for DAO operations like Where/Data.
|
|
type GoShows struct {
|
|
g.Meta `orm:"table:go_shows, do:true"`
|
|
Id interface{} // 展示内容唯一ID,自增
|
|
Cover interface{} // 展示内容封面路径或相关标识,可为空
|
|
Name interface{} // 展示内容名称,最大长度255字符,不能为空
|
|
UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空
|
|
ReleaseTime *gtime.Time // 展示内容发布时间,可为空
|
|
VideoDuration *gtime.Time // 展示内容视频时长,格式根据实际情况定,可为空
|
|
ViewCount interface{} // 展示内容观看数量,初始值为0,可累加
|
|
Comments interface{} // 展示内容评论数量,初始值为0,可累加
|
|
Likes interface{} // 展示内容点赞数量,初始值为0,可累加
|
|
FlagType interface{} // 展示内容标识类型,按业务规则确定,可为空
|
|
ClubId interface{} // 关联的俱乐部ID,指向go_clubs表的id,可为空
|
|
ChannelId interface{} // 关联的频道ID,指向go_channels表的id,可为空
|
|
}
|