re_selection_reward_cash.go 692 B

123456789101112131415161718192021
  1. package vo
  2. type ReSelectionRewardCash struct {
  3. RewardPoolAmount float64 `json:"rewardPoolAmount"`
  4. RewardPoolCashed float64 `json:"rewardPoolCashed"`
  5. CashedRate float64 `json:"cashedRate"`
  6. TalentNum int64 `json:"talentNum"`
  7. TalentMsgList ResultVO `json:"talentMsgList"`
  8. }
  9. type TalentRewardMsg struct {
  10. PhotoUrl string `json:"photoUrl"`
  11. Nickname string `json:"nickname"`
  12. Account string `json:"account"`
  13. PlatformId int64 `json:"platformId"`
  14. City string `json:"city"`
  15. OrderNum int64 `json:"orderNum"`
  16. CashTime string `json:"cashTime"`
  17. Gender string `json:"gender"` // U:未知;M,m:男; F女
  18. TaskId string `json:"taskId"`
  19. }