model.go 820 B

12345678910111213141516171819202122232425262728293031
  1. package esports
  2. // Contest contest.
  3. type Contest struct {
  4. ID int64 `json:"id"`
  5. Stime int64 `json:"stime"`
  6. LiveRoom int64 `json:"live_room"`
  7. HomeID int64 `json:"home_id"`
  8. AwayID int64 `json:"away_id"`
  9. SuccessTeam int64 `json:"success_team"`
  10. SeasonTitle string `json:"season_title"`
  11. SeasonSubTitle string `json:"season_sub_title"`
  12. Special int `json:"special"`
  13. SpecialName string `json:"special_name"`
  14. SpecialTips string `json:"special_tips"`
  15. }
  16. // Team team.
  17. type Team struct {
  18. ID int64 `json:"id"`
  19. Title string `json:"title"`
  20. SubTitle string `json:"sub_title"`
  21. }
  22. // Arc arc.
  23. type Arc struct {
  24. ID int64 `json:"id"`
  25. Aid int64 `json:"aid"`
  26. Score int64 `json:"score"`
  27. IsDeleted int `json:"is_deleted"`
  28. }