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" )
// ShortChapter is the golang structure of table cms_short_chapter for DAO operations like Where/Data.
type ShortChapter struct { g.Meta `orm:"table:cms_short_chapter, do:true"` Id interface{} //
ShortVideoId interface{} // 短剧编号
ChapterNum interface{} // 短剧序号
Title interface{} // 章节标题
Subtitles interface{} // 为后期识别字幕做准备
SourceUrl interface{} // 源地址
CdnUrl interface{} // CDN 地址
Chapter interface{} // 章节介绍
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
}
|