match.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. package model
  2. import (
  3. arcmdl "go-common/app/service/main/archive/api"
  4. "go-common/library/time"
  5. )
  6. // Filter filter struct
  7. type Filter struct {
  8. ID int64 `json:"id"`
  9. Title string `json:"title"`
  10. SubTitle string `json:"sub_title"`
  11. Logo string `json:"logo"`
  12. Rank int `json:"rank"`
  13. URL string `json:"url"`
  14. DataFocus string `json:"data_focus"`
  15. FocusURL string `json:"focus_url"`
  16. }
  17. // Year year struct
  18. type Year struct {
  19. ID int64 `json:"id"`
  20. Year int64 `json:"year"`
  21. Aid int64 `json:"aid"`
  22. }
  23. // Calendar calendar struct
  24. type Calendar struct {
  25. Stime string `json:"stime"`
  26. Count int64 `json:"count"`
  27. }
  28. // Season season struct
  29. type Season struct {
  30. ID int64 `json:"id"`
  31. Mid int64 `json:"mid"`
  32. Title string `json:"title"`
  33. SubTitle string `json:"sub_title"`
  34. Stime int64 `json:"stime"`
  35. Etime int64 `json:"etime"`
  36. Sponsor string `json:"sponsor"`
  37. Logo string `json:"logo"`
  38. Dic string `json:"dic"`
  39. Status int64 `json:"status"`
  40. Ctime time.Time `json:"ctime"`
  41. Mtime time.Time `json:"mtime"`
  42. Rank int64 `json:"rank"`
  43. IsApp int64 `json:"is_app"`
  44. URL string `json:"url"`
  45. DataFocus string `json:"data_focus"`
  46. FocusURL string `json:"focus_url"`
  47. }
  48. // Contest contest struct
  49. type Contest struct {
  50. ID int64 `json:"id"`
  51. GameStage string `json:"game_stage"`
  52. Stime int64 `json:"stime"`
  53. Etime int64 `json:"etime"`
  54. HomeID int64 `json:"home_id"`
  55. AwayID int64 `json:"away_id"`
  56. HomeScore int64 `json:"home_score"`
  57. AwayScore int64 `json:"away_score"`
  58. LiveRoom int64 `json:"live_room"`
  59. Aid int64 `json:"aid"`
  60. Collection int64 `json:"collection"`
  61. GameState int64 `json:"game_state"`
  62. Dic string `json:"dic"`
  63. Ctime string `json:"ctime"`
  64. Mtime string `json:"mtime"`
  65. Status int64 `json:"status"`
  66. Sid int64 `json:"sid"`
  67. Mid int64 `json:"mid"`
  68. Season interface{} `json:"season"`
  69. HomeTeam interface{} `json:"home_team"`
  70. AwayTeam interface{} `json:"away_team"`
  71. Special int `json:"special"`
  72. SuccessTeam int64 `json:"success_team"`
  73. SuccessTeaminfo interface{} `json:"success_teaminfo"`
  74. SpecialName string `json:"special_name"`
  75. SpecialTips string `json:"special_tips"`
  76. SpecialImage string `json:"special_image"`
  77. Playback string `json:"playback"`
  78. CollectionURL string `json:"collection_url"`
  79. LiveURL string `json:"live_url"`
  80. DataType int64 `json:"data_type"`
  81. MatchID int64 `json:"match_id"`
  82. }
  83. // ContestsData contest data struct
  84. type ContestsData struct {
  85. ID int64 `json:"id"`
  86. Cid int64 `json:"cid"`
  87. URL string `json:"url"`
  88. PointData int64 `json:"point_data"`
  89. GameStatus int64 `json:"game_status"`
  90. DataType int64 `json:"-"`
  91. }
  92. //ContestDataPage contest data pager
  93. type ContestDataPage struct {
  94. Contest *Contest `json:"contest"`
  95. Detail []*ContestsData `json:"detail"`
  96. }
  97. // ElaSub elasticsearch sub contest.
  98. type ElaSub struct {
  99. SeasonStime int64 `json:"season_stime"`
  100. Mid int64 `json:"mid"`
  101. Stime int64 `json:"stime"`
  102. Oid int64 `json:"oid"`
  103. State int64 `json:"state"`
  104. Sid int64 `json:"sid"`
  105. }
  106. // Tree match Active
  107. type Tree struct {
  108. ID int64 `json:"id" form:"id"`
  109. MaID int64 `json:"ma_id,omitempty" form:"ma_id" validate:"required"`
  110. MadID int64 `json:"mad_id,omitempty" form:"mad_id" validate:"required"`
  111. Pid int64 `json:"pid" form:"pid"`
  112. RootID int64 `json:"root_id" form:"root_id"`
  113. GameRank int64 `json:"game_rank,omitempty" form:"game_rank" validate:"required"`
  114. Mid int64 `json:"mid" form:"mid"`
  115. IsDeleted int `json:"is_deleted,omitempty" form:"is_deleted"`
  116. }
  117. // Team .
  118. type Team struct {
  119. ID int64 `json:"id" form:"id"`
  120. Title string `json:"title" form:"title" validate:"required"`
  121. SubTitle string `json:"sub_title" form:"sub_title"`
  122. ETitle string `json:"e_title" form:"e_title"`
  123. CreateTime int64 `json:"create_time" form:"create_time"`
  124. Area string `json:"area" form:"area"`
  125. Logo string `json:"logo" form:"logo" validate:"required"`
  126. UID int64 `json:"uid" form:"uid" gorm:"column:uid"`
  127. Members string `json:"members" form:"members"`
  128. Dic string `json:"dic" form:"dic"`
  129. IsDeleted int `json:"is_deleted" form:"is_deleted"`
  130. }
  131. // ContestInfo .
  132. type ContestInfo struct {
  133. *Contest
  134. HomeName string `json:"home_name"`
  135. AwayName string `json:"away_name"`
  136. SuccessName string `json:"success_name" form:"success_name"`
  137. }
  138. // TreeList .
  139. type TreeList struct {
  140. *Tree
  141. *ContestInfo
  142. }
  143. // Active match Active
  144. type Active struct {
  145. ID int64 `json:"id"`
  146. Mid int64 `json:"mid"`
  147. Sid int64 `json:"sid"`
  148. Background string `json:"background"`
  149. Liveid int64 `json:"live_id"`
  150. Intr string `json:"intr"`
  151. Focus string `json:"focus"`
  152. URL string `json:"url"`
  153. BackColor string `json:"back_color"`
  154. ColorStep string `json:"color_step"`
  155. H5Background string `json:"h5_background"`
  156. H5BackColor string `json:"h5_back_color"`
  157. IntrLogo string `json:"intr_logo"`
  158. IntrTitle string `json:"intr_title"`
  159. IntrText string `json:"intr_text"`
  160. H5Focus string `json:"h5_focus"`
  161. H5Url string `json:"h5_url"`
  162. }
  163. // Module match module
  164. type Module struct {
  165. ID int64 `json:"id"`
  166. MAid int64 `json:"ma_id"`
  167. Name string `json:"name"`
  168. Oids string `json:"oids"`
  169. }
  170. //ActiveDetail 活动页数据模块
  171. type ActiveDetail struct {
  172. ID int64 `json:"id"`
  173. Maid int64 `json:"ma_id"`
  174. GameType int `json:"game_type"`
  175. STime int64 `json:"stime"`
  176. ETime int64 `json:"etime"`
  177. ScoreID int64 `json:"score_id"`
  178. GameStage string `json:"game_stage"`
  179. KnockoutType int `json:"knockout_type"`
  180. WinnerType int `json:"winner_type"`
  181. Online int `json:"online"`
  182. }
  183. //ActivePage 活动页
  184. type ActivePage struct {
  185. Active *Active `json:"active,omitempty"`
  186. Videos []*arcmdl.Arc `json:"video_first,omitempty"`
  187. Modules []*Module `json:"video_module,omitempty"`
  188. ActiveDetail []*ActiveDetail `json:"active_detail,omitempty"`
  189. Season *Season `json:"season,omitempty"`
  190. }