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 entity
import ( "github.com/gogf/gf/v2/os/gtime" )
// Shows is the golang structure for table shows.
type Shows struct { Id uint64 `json:"id" orm:"id" ` // 主键
Cover string `json:"cover" orm:"cover" ` // 封面图URL
Title string `json:"title" orm:"title" ` // 标题
PublisherId uint64 `json:"publisherId" orm:"publisher_id" ` // 发布人ID
PublisherAvatar string `json:"publisherAvatar" orm:"publisher_avatar" ` // 发布人头像URL
PublishTime *gtime.Time `json:"publishTime" orm:"publish_time" ` // 发布时间
ViewCount uint `json:"viewCount" orm:"view_count" ` // 观看人数
CommentCount uint `json:"commentCount" orm:"comment_count" ` // 评论数
LikeCount uint `json:"likeCount" orm:"like_count" ` // 点赞数
Type int `json:"type" orm:"type" ` // 类型(1=文章,2=视频)
ClubId int `json:"clubId" orm:"club_id" ` // 所属俱乐部(0=无,1=博古)
VideoDuration uint `json:"videoDuration" orm:"video_duration" ` // 视频时长(秒)
}
|