1234567891011121314151617181920212223 |
- package vo
- type ReSelectionRewardCash struct {
- RewardPoolAmount float64 `json:"rewardPoolAmount"`
- RewardPoolCashed float64 `json:"rewardPoolCashed"`
- CashedRate float64 `json:"cashedRate"`
- TalentNum int64 `json:"talentNum"`
- TalentMsgList ResultVO `json:"talentMsgList"`
- }
- type TalentRewardMsg struct {
- PhotoUrl string `json:"photoUrl"`
- Nickname string `json:"nickname"`
- Account string `json:"account"`
- PlatformId int64 `json:"platformId"`
- City string `json:"city"`
- OrderNum int64 `json:"orderNum"`
- CashTime string `json:"cashTime"`
- Gender string `json:"gender"` // U:未知;M,m:男; F女
- TaskId string `json:"taskId"`
- TalentSource int64 `json:"talentSource"` // 1-公海
- TaskReward float64 `json:"taskReward"` // 兑现金额
- }
|