You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
471 B
14 lines
471 B
package values |
|
|
|
type OneTask struct { |
|
TaskID int // 任务id |
|
Progress int64 // 进度 |
|
Target int64 // 任务值 |
|
Reward int64 // 奖励数值 |
|
Cycle int // 周期(1每日 2每周 3每月 4单次) |
|
TaskType int // 任务类型(1:邀请玩家注册,2:充值次数,3:下注额,4:解锁周卡,5:订阅频道) |
|
Status int // 0未完成,1已完成,2已领取 |
|
Title string // 标题 |
|
Url string // 跳转链接 |
|
Sort int // 排序 |
|
}
|
|
|