model.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package timemachine
  2. import "go-common/app/service/main/archive/api"
  3. // Timemachine .
  4. type Timemachine struct {
  5. Mid int64 `json:"mid"`
  6. Face string `json:"face"`
  7. Uname string `json:"uname"`
  8. RegTime string `json:"reg_time"`
  9. RegDay int64 `json:"reg_day"`
  10. IsUp int64 `json:"is_up"`
  11. DurationHour int64 `json:"duration_hour"`
  12. ArchiveVv int64 `json:"archive_vv"`
  13. LikeTagID int64 `json:"like_tag_id"`
  14. LikeTagName string `json:"like_tag_name"`
  15. LikeTagDescFirst string `json:"like_tag_desc_first"`
  16. LikeTagDescSecond string `json:"like_tag_desc_second"`
  17. LikeTagDescSecond2 string `json:"like_tag_desc_second2"`
  18. LikeSubtidVv int64 `json:"like_subtid_vv"`
  19. Likes3Arcs []*TmArc `json:"likes_3arcs"`
  20. LikeBestUpID int64 `json:"like_best_upid"`
  21. LikeBestUpName string `json:"like_best_up_name"`
  22. LikeBestUpFace string `json:"like_best_up_face"`
  23. LikeUpAvDuration int64 `json:"like_up_av_duration"`
  24. LikeUpLiveDuration int64 `json:"like_up_live_duration"`
  25. LikeUpDuration int64 `json:"like_up_duration"`
  26. LikeUp3Arcs []*TmArc `json:"like_up_3arcs"`
  27. LikeLiveUpSubTname string `json:"like_live_up_sub_tname"`
  28. BrainwashCirTime string `json:"brainwash_cir_time"`
  29. BrainwashCirArc *TmArc `json:"brainwash_cir_arc"`
  30. BrainwashCirVv int64 `json:"brainwash_cir_vv"`
  31. FirstSubmitArc *TmArc `json:"first_submit_arc"`
  32. FirstSubmitTime string `json:"first_submit_time"`
  33. FirstSubmitType int64 `json:"first_submit_type"`
  34. SubmitAvsRds string `json:"submit_avs_rds"`
  35. BestArc *TmArc `json:"best_arc"`
  36. BestAvidType int64 `json:"best_avid_type"`
  37. BestArcOld *TmArc `json:"best_arc_old"`
  38. BestAvidOldType int64 `json:"best_avid_old_type"`
  39. OldAvVv int64 `json:"old_av_vv"`
  40. AllVv int64 `json:"all_vv"`
  41. UpLiveDuration int64 `json:"up_live_duration"`
  42. IsLiveUp int64 `json:"is_live_up"`
  43. ValidLiveDays int64 `json:"valid_live_days"`
  44. MaxCdnNumDate string `json:"max_cdn_num_date"`
  45. MaxCdnNum int64 `json:"max_cdn_num"`
  46. AddAttentions int64 `json:"add_attentions"`
  47. Fans int64 `json:"fans"`
  48. UpBestFanVv *FavVv `json:"up_best_fan_vv"`
  49. UpBestFanLiveMinute *FanMinute `json:"up_best_fan_live_minute"`
  50. WinRatio string `json:"win_ratio"`
  51. Like2Tnames string `json:"like_2tnames"`
  52. Like2SubTnames string `json:"like_2sub_tnames"`
  53. LikeSubDesc1 string `json:"like_sub_desc1"`
  54. LikeSubDesc2 string `json:"like_sub_desc2"`
  55. LikeSubDesc3 string `json:"like_sub_desc3"`
  56. }
  57. // AidView aid view.
  58. type AidView struct {
  59. Aid int64 `json:"aid"`
  60. View int64 `json:"view"`
  61. }
  62. // FavVv .
  63. type FavVv struct {
  64. Mid int64 `json:"mid"`
  65. Name string `json:"name"`
  66. Face string `json:"face"`
  67. Vv int64 `json:"vv"`
  68. }
  69. // FanMinute .
  70. type FanMinute struct {
  71. Mid int64 `json:"mid"`
  72. Name string `json:"name"`
  73. Face string `json:"face"`
  74. Minute int64 `json:"minute"`
  75. }
  76. // TmArc time machine arc.
  77. type TmArc struct {
  78. Aid int64 `json:"aid"`
  79. Title string `json:"title"`
  80. Cover string `json:"cover"`
  81. Author api.Author `json:"author"`
  82. }
  83. // TagDesc tag desc.
  84. type TagDesc struct {
  85. TagID int64 `json:"tag_id"`
  86. TagName string `json:"tag_name"`
  87. Desc1 string `json:"desc1"`
  88. Desc2Line1 string `json:"desc2_line1"`
  89. Desc2Line2 string `json:"desc2_line2"`
  90. }
  91. // TagRegionDesc tag region desc.
  92. type TagRegionDesc struct {
  93. RID int64 `json:"rid"`
  94. Desc1 string `json:"desc1"`
  95. Desc2Line1 string `json:"desc2_line1"`
  96. Desc2Line2 string `json:"desc2_line2"`
  97. }
  98. // RegionDesc region desc.
  99. type RegionDesc struct {
  100. RID int64 `json:"rid"`
  101. Desc1 string `json:"desc1"`
  102. Desc2 string `json:"desc2"`
  103. Desc3 string `json:"desc3"`
  104. }