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.
23 lines
1.0 KiB
23 lines
1.0 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// ShortChapter is the golang structure for table short_chapter.
|
|
type ShortChapter struct {
|
|
Id uint `json:"id" ` //
|
|
ShortVideoId uint `json:"short_video_id" ` // 短剧编号
|
|
ChapterNum int `json:"chapter_num" ` // 短剧序号
|
|
Title string `json:"title" ` // 章节标题
|
|
Subtitles string `json:"subtitles" ` // 为后期识别字幕做准备
|
|
SourceUrl string `json:"source_url" ` // 源地址
|
|
CdnUrl string `json:"cdn_url" ` // CDN 地址
|
|
Chapter string `json:"chapter" ` // 章节介绍
|
|
CreatedAt *gtime.Time `json:"created_at" ` //
|
|
UpdatedAt *gtime.Time `json:"updated_at" ` //
|
|
}
|