search.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package model
  2. import "encoding/json"
  3. // Page es page
  4. type Page struct {
  5. Num int `json:"num"`
  6. Size int `json:"size"`
  7. Total int `json:"total"`
  8. }
  9. // SearchVideo search video.
  10. type SearchVideo struct {
  11. AID int64 `json:"aid"`
  12. }
  13. // SearchEsp big search esports.
  14. type SearchEsp struct {
  15. Code int `json:"code,omitempty"`
  16. Seid string `json:"seid"`
  17. Page int `json:"page"`
  18. PageSize int `json:"pagesize"`
  19. NumResults int `json:"numResults"`
  20. NumPages int `json:"numPages"`
  21. Result json.RawMessage `json:"result"`
  22. }
  23. // FilterES filter ES video and match
  24. type FilterES struct {
  25. GroupByGid []struct {
  26. DocCount int `json:"doc_count"`
  27. Key string `json:"key"`
  28. } `json:"group_by_gid"`
  29. GroupByMatch []struct {
  30. DocCount int `json:"doc_count"`
  31. Key string `json:"key"`
  32. } `json:"group_by_match"`
  33. GroupByTag []struct {
  34. DocCount int `json:"doc_count"`
  35. Key string `json:"key"`
  36. } `json:"group_by_tag"`
  37. GroupByTeam []struct {
  38. DocCount int `json:"doc_count"`
  39. Key string `json:"key"`
  40. } `json:"group_by_team"`
  41. GroupByYear []struct {
  42. DocCount int `json:"doc_count"`
  43. Key string `json:"key"`
  44. } `json:"group_by_year"`
  45. }