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.
34 lines
1.2 KiB
34 lines
1.2 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"
|
|
)
|
|
|
|
// ShortVideo is the golang structure of table cms_short_video for DAO operations like Where/Data.
|
|
type ShortVideo struct {
|
|
g.Meta `orm:"table:cms_short_video, do:true"`
|
|
Id interface{} //
|
|
Title interface{} // 标题
|
|
Introduction interface{} //
|
|
Tag interface{} // 标签
|
|
Author interface{} // 作者
|
|
Actor interface{} // 演员
|
|
Protagonist interface{} // 主角
|
|
Cover interface{} // 封面
|
|
CoverUrl interface{} // 封面
|
|
ChapterUrls interface{} // 资源地址
|
|
ChapterCount interface{} // 当前章节
|
|
ChapterMax interface{} // 共人章节
|
|
Status interface{} // 状态 0未审核 1更新中 2完结
|
|
Views interface{} // 观看次数
|
|
Stars interface{} // 标星
|
|
CreatedAt *gtime.Time //
|
|
UpdatedAt *gtime.Time //
|
|
FinishStatus interface{} //
|
|
Online interface{} //
|
|
}
|