12345678910111213141516171819202122 |
- package vo
- type ReBillTalent struct {
- TalentId string `json:"talentId"`
- OpenId string `json:"openId"` // 表platform_kuaishou_user_info
- PlatformId int64 `json:"platformId"`
- NickName string `json:"nickName"`
- HeadUri string `json:"headUri"`
- City string `json:"city"`
- Gender string `json:"gender"` // U:未知;M,m:男;F f女
- TaskId string `json:"taskId"` // 任务id
- TalentSource string `json:"talentSource"`
- ViewNum int64 `json:"viewNum"` // 浏览/播放/阅读
- VoteAvg int64 `json:"voteAvg"` // 点赞
- CollectNum int64 `json:"collectNum"` // 收藏
- CommitAvg int64 `json:"commitAvg"` // 评论
- ChargeActual float64 `json:"chargeActual"` // 应付金额
- ChargeSettle float64 `json:"chargeSettle"` // 实际结算金额
- SettleTime string `json:"settleTime"` // 结算时间
- }
|