123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package http_model
- type GetLocallifeTalentRequest struct {
- PageSize int `json:"page_size"`
- PageNum int `json:"page_num"`
- SortField []string `json:"sort_field,omitempty"`
- SortOrder []string `json:"sort_order,omitempty"` //粉丝数,实际带货销量,近30天销量,累计合作次数
- Platform *string `json:"platform,omitempty"`
- TalentName string `json:"talent_name"`
- EnterpriseId string `json:"enterprise_id"`
- }
- type GetLocallifeTalentListData struct {
- TalentList []*LocallifeTalentInfo `json:"talent_list"`
- Total string `json:"total"`
- }
- type LocallifeTalentInfo struct {
- TalentId string `json:"talent_id"`
- Nickname string `json:"nickname"`
- City string `json:"city"`
- HeadUrl string `json:"head_url"`
- FansNum int `json:"fans_num"`
- AvgLikes int `json:"avg_likes"`
- AvgCollected int `json:"avg_collected"`
- AvgComments int `json:"avg_comments"`
- AccPlay int `json:"acc_play"`
- AccInteract int `json:"acc_interact"`
- AccCoopTime int `json:"acc_coop_time"`
- FirCoopFrom string `json:"fir_coop_from"`
- SType int `json:"stype"`
- }
- func NewGetLocallifeTalentRequest() *GetLocallifeTalentRequest {
- return new(GetLocallifeTalentRequest)
- }
- func NewGetLocallifeTalentResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(GetLocallifeTalentListData)
- return resp
- }
|