go-common/app/interface/main/tv/model/search/client.go

18 lines
430 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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"`
}