go-common/app/interface/main/tv/model/search/client.go
2019-04-22 18:49:16 +08:00

18 lines
430 B
Go

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"`
}