re_bill_talent.go 862 B

12345678910111213141516171819202122
  1. package vo
  2. type ReBillTalent struct {
  3. TalentId string `json:"talentId"`
  4. OpenId string `json:"openId"` // 表platform_kuaishou_user_info
  5. PlatformId int64 `json:"platformId"`
  6. NickName string `json:"nickName"`
  7. HeadUri string `json:"headUri"`
  8. City string `json:"city"`
  9. Gender string `json:"gender"` // U:未知;M,m:男;F f女
  10. TaskId string `json:"taskId"` // 任务id
  11. TalentSource string `json:"talentSource"`
  12. ViewNum int64 `json:"viewNum"` // 浏览/播放/阅读
  13. VoteAvg int64 `json:"voteAvg"` // 点赞
  14. CollectNum int64 `json:"collectNum"` // 收藏
  15. CommitAvg int64 `json:"commitAvg"` // 评论
  16. ChargeActual float64 `json:"chargeActual"` // 应付金额
  17. ChargeSettle float64 `json:"chargeSettle"` // 实际结算金额
  18. SettleTime string `json:"settleTime"` // 结算时间
  19. }