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.

61 lines
3.3 KiB

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