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.

62 lines
3.4 KiB

9 months ago
9 months ago
9 months ago
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. // Video is the golang structure for table video.
  9. type Video struct {
  10. Id uint `json:"id" ` //
  11. SourceUrl string `json:"source_url" ` // 源地址
  12. CollectId int `json:"collect_id" ` // 站点
  13. Title string `json:"title" ` // 标题
  14. TitleSub string `json:"title_sub" ` // 副标
  15. Letter string `json:"letter" ` // 首字母
  16. Tag string `json:"tag" ` // TAG
  17. Color string `json:"color" ` // 颜色
  18. Lock uint `json:"lock" ` // 锁定
  19. Copyright uint `json:"copyright" ` // 版权
  20. IsEnd uint `json:"is_end" ` // 完结
  21. Status uint `json:"status" ` // 状态
  22. Class string `json:"class" ` // 扩展分类
  23. CategoryId uint `json:"category_id" ` // 分类
  24. Pic string `json:"pic" ` // 图片
  25. PicId string `json:"pic_id" ` // 图片编号
  26. PicLocal string `json:"pic_local" ` //
  27. PicThumb string `json:"pic_thumb" ` // 缩略图
  28. PicSlide string `json:"pic_slide" ` // 轮播
  29. PicScreenshot string `json:"pic_screenshot" ` // 截图
  30. PicStatus uint `json:"pic_status" ` // 图片状态
  31. Actor string `json:"actor" ` // 演员
  32. Director string `json:"director" ` // 导演
  33. Writer string `json:"writer" ` // 编剧
  34. Remarks string `json:"remarks" ` // 备注
  35. Pubdate string `json:"pubdate" ` // 发布时间
  36. Total int `json:"total" ` // 总集数
  37. Serial string `json:"serial" ` // 连载数
  38. Duration string `json:"duration" ` // 视频时长
  39. Tv string `json:"tv" ` // 电视频道
  40. Weekday string `json:"weekday" ` // 节目周期
  41. Area string `json:"area" ` // 地区
  42. Lang string `json:"lang" ` // 语言
  43. Jumpurl string `json:"jumpurl" ` // 跳转URL
  44. Version string `json:"version" ` // 资源版本
  45. Year int `json:"year" ` // 年份
  46. State string `json:"state" ` // 资源类别
  47. DoubanScore float64 `json:"douban_score" ` // 豆瓣评分
  48. DoubanId int `json:"douban_id" ` // 豆瓣ID
  49. Up int `json:"up" ` // 顶
  50. Down int `json:"down" ` // 踩
  51. Hits int `json:"hits" ` // 人气
  52. HitsMonth int `json:"hits_month" ` // 月人气
  53. HitsWeek int `json:"hits_week" ` // 周人气
  54. HitsDay int `json:"hits_day" ` // 天人气
  55. Content string `json:"content" ` // 内容
  56. CreatedAt *gtime.Time `json:"created_at" ` //
  57. Blurb string `json:"blurb" ` // 简要介绍
  58. UpdatedAt *gtime.Time `json:"updated_at" ` //
  59. }