1234567891011121314151617181920212223242526272829303132 |
- package http_model
- type TalentDataRequest struct {
- PlatformUserId int `json:"platform_user_id"` // 平台用户ID
- }
- type TalentData struct {
- Fans string `json:"fans"` // 粉丝数
- VoteNum int `json:"vote_num"` // 点赞数
- CollectNum int `json:"collect_num"` // 收藏数
- CommitNum int `json:"commit_num"` // 评论数
- Sale30Days int `json:"sale_30_days"` // 30天销量
- Sale60Days int `json:"sale_60_days"` // 60天销量
- Sale90Days int `json:"sale_90_days"` // 90天销量
- HeadUrl string `json:"head_url"` // 头像
- Nickname string `json:"nickname"` // 昵称
- City string `json:"city"` // 城市
- Skill string `json:"skill"` // 擅长领域
- Gender string `json:"gender"` // 性别
- WXNumber string `json:"wx_number"` // 微信号
- Phone string `json:"phone"` // 手机号
- }
- func NewTalentDataRequest() *TalentDataRequest {
- return new(TalentDataRequest)
- }
- func NewTalentDataResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(TalentData)
- return resp
- }
|