search.go 820 B

12345678910111213141516171819202122232425262728293031
  1. package model
  2. // SearchResult is
  3. type SearchResult struct {
  4. Code int `json:"code"`
  5. Data struct {
  6. Debug string `json:"debug"`
  7. Order string `json:"order"`
  8. Page struct {
  9. Num int64 `json:"num"`
  10. Size int64 `json:"size"`
  11. Total int64 `json:"total"`
  12. } `json:"page"`
  13. Result []struct {
  14. Action string `json:"action"`
  15. Build int64 `json:"build"`
  16. Business int64 `json:"business"`
  17. Buvid string `json:"buvid"`
  18. Ctime string `json:"ctime"`
  19. ExtraData string `json:"extra_data"`
  20. IP string `json:"ip"`
  21. Mid int64 `json:"mid"`
  22. Oid int64 `json:"oid"`
  23. Platform string `json:"platform"`
  24. Type int64 `json:"type"`
  25. } `json:"result"`
  26. Sort string `json:"sort"`
  27. } `json:"data"`
  28. Message string `json:"message"`
  29. TTL int64 `json:"ttl"`
  30. }