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.
20 lines
327 B
20 lines
327 B
|
1 year ago
|
package values
|
||
|
|
|
||
|
|
// Kind 1单次 2循环
|
||
|
|
// Type 1注册 2下载 3累充 4单次充
|
||
|
|
// Progess 进度
|
||
|
|
// Status 0未完成 1已完成 2已领取
|
||
|
|
type OneTask struct {
|
||
|
|
ID int
|
||
|
|
TaskID int
|
||
|
|
Target int64
|
||
|
|
Reward int64
|
||
|
|
Kind int
|
||
|
|
Type int
|
||
|
|
Progess int64
|
||
|
|
Status int
|
||
|
|
Title string
|
||
|
|
Icon string
|
||
|
|
Action int
|
||
|
|
}
|