re_selection_reward_cash.go 560 B

123456789101112131415161718
  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. OrderNum int64 `json:"orderNum"`
  14. CashTime string `json:"cashTime"`
  15. Gender int64 `json:"gender"` // 0未知 1男 2女
  16. }