package model // 邀请好友-InviteFriends exported from 邀请功能.xlsx type InviteFriends struct { Uid int64 `json:"Uid"` // ID Des string `json:"Des"` // 任务描述 TaskType int64 `json:"TaskType"` // 任务类型 Value []int64 `json:"Value"` // 任务参数 Reward [][]int64 `json:"Reward"` // 奖励 道具ID,数量 } // package model // 被邀请奖励-InvitedRewards exported from 邀请功能.xlsx type InvitedRewards struct { Uid int64 `json:"Uid"` // ID Reward [][]int64 `json:"Reward"` // 被邀请奖励 道具类型,道具ID,数量 }