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" )
// Shows is the golang structure of table shows for DAO operations like Where/Data.
type Shows struct { g.Meta `orm:"table:shows, do:true"` Id interface{} // 主键
Cover interface{} // 封面图URL
Title interface{} // 标题
PublisherId interface{} // 发布人ID
PublisherAvatar interface{} // 发布人头像URL
PublishTime *gtime.Time // 发布时间
ViewCount interface{} // 观看人数
CommentCount interface{} // 评论数
LikeCount interface{} // 点赞数
Type interface{} // 类型(1=文章,2=视频)
ClubId interface{} // 所属俱乐部(0=无,1=博古)
VideoDuration interface{} // 视频时长(秒)
}
|