invite.go 620 B

12345678910111213141516
  1. package model
  2. // 邀请好友-InviteFriends exported from 邀请功能.xlsx
  3. type InviteFriends struct {
  4. Uid int64 `json:"Uid"` // ID
  5. Des string `json:"Des"` // 任务描述
  6. TaskType int64 `json:"TaskType"` // 任务类型
  7. Value []int64 `json:"Value"` // 任务参数
  8. Reward [][]int64 `json:"Reward"` // 奖励 道具ID,数量
  9. } // package model
  10. // 被邀请奖励-InvitedRewards exported from 邀请功能.xlsx
  11. type InvitedRewards struct {
  12. Uid int64 `json:"Uid"` // ID
  13. Reward [][]int64 `json:"Reward"` // 被邀请奖励 道具类型,道具ID,数量
  14. }