You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
package search |
|
|
|
//RespForClient def. |
|
type RespForClient struct { |
|
*ResultResponse |
|
SearchType string `json:"search_type"` |
|
PageInfo *pageinfo `json:"pageinfo"` |
|
ResultAll *AllForClient `json:"resultall"` |
|
PGC []*CommonResult `json:"pgc"` |
|
UGC []*CommonResult `json:"ugc"` |
|
} |
|
|
|
//AllForClient def. |
|
type AllForClient struct { |
|
Pgc []*CommonResult `json:"tvpgc"` |
|
Ugc []*CommonResult `json:"tvugc"` |
|
}
|
|
|