sports.go 691 B

12345678910111213141516171819202122
  1. package sports
  2. import "encoding/json"
  3. // QqRes qq result
  4. type QqRes struct {
  5. Ret int `json:"ret,omitempty"`
  6. IDlist json.RawMessage `json:"idlist,omitempty"`
  7. ID string `json:"id"`
  8. Title string `json:"title"`
  9. URL string `json:"url"`
  10. Kurl string `json:"kurl"`
  11. Atype interface{} `json:"atype"`
  12. Img json.RawMessage `json:"img"`
  13. Cid string `json:"cid"`
  14. Src string `json:"src"`
  15. Time int64 `json:"time"`
  16. Pubtime string `json:"pubtime"`
  17. Surl string `json:"surl"`
  18. Content json.RawMessage `json:"content"`
  19. Voteid interface{} `json:"voteid"`
  20. }