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.

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