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.

32 lines
1.5 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. // ShortVideo is the golang structure for table short_video.
  9. type ShortVideo struct {
  10. Id int64 `json:"id" ` //
  11. Title string `json:"title" ` // 标题
  12. Introduction string `json:"introduction" ` //
  13. Tag string `json:"tag" ` // 标签
  14. Author string `json:"author" ` // 作者
  15. Actor string `json:"actor" ` // 演员
  16. Protagonist string `json:"protagonist" ` // 主角
  17. Cover string `json:"cover" ` // 封面
  18. CoverUrl string `json:"cover_url" ` // 封面
  19. ChapterUrls string `json:"chapter_urls" ` // 资源地址
  20. ChapterCount int `json:"chapter_count" ` // 当前章节
  21. ChapterMax int `json:"chapter_max" ` // 共人章节
  22. Status uint `json:"status" ` // 状态 0未审核 1更新中 2完结
  23. Views int `json:"views" ` // 观看次数
  24. Stars int `json:"stars" ` // 标星
  25. CreatedAt *gtime.Time `json:"created_at" ` //
  26. UpdatedAt *gtime.Time `json:"updated_at" ` //
  27. FinishStatus int `json:"finish_status" ` //
  28. Online int `json:"online" ` //
  29. }