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

9 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // ShortChapter is the golang structure for table short_chapter.
  9. type ShortChapter struct {
  10. Id uint `json:"id" ` //
  11. ShortVideoId uint `json:"short_video_id" ` // 短剧编号
  12. ChapterNum int `json:"chapter_num" ` // 短剧序号
  13. Title string `json:"title" ` // 章节标题
  14. Subtitles string `json:"subtitles" ` // 为后期识别字幕做准备
  15. SourceUrl string `json:"source_url" ` // 源地址
  16. CdnUrl string `json:"cdn_url" ` // CDN 地址
  17. Chapter string `json:"chapter" ` // 章节介绍
  18. CreatedAt *gtime.Time `json:"created_at" ` //
  19. UpdatedAt *gtime.Time `json:"updated_at" ` //
  20. }