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"` ThirtySales string `json:"thirty_sales"` AccSales string `json:"acc_sales"` ActualSales string `json:"actual_sales"` AccCoopTime int `json:"acc_coop_time"` FirCoopFrom string `json:"fir_coop_from"` } func NewGetLocallifeTalentRequest() *GetLocallifeTalentRequest { return new(GetLocallifeTalentRequest) } func NewGetLocallifeTalentResponse() *CommonResponse { resp := new(CommonResponse) resp.Data = new(GetLocallifeTalentListData) return resp }