client.go 430 B

1234567891011121314151617
  1. package search
  2. //RespForClient def.
  3. type RespForClient struct {
  4. *ResultResponse
  5. SearchType string `json:"search_type"`
  6. PageInfo *pageinfo `json:"pageinfo"`
  7. ResultAll *AllForClient `json:"resultall"`
  8. PGC []*CommonResult `json:"pgc"`
  9. UGC []*CommonResult `json:"ugc"`
  10. }
  11. //AllForClient def.
  12. type AllForClient struct {
  13. Pgc []*CommonResult `json:"tvpgc"`
  14. Ugc []*CommonResult `json:"tvugc"`
  15. }