|
@@ -7,6 +7,7 @@ type UserLevelTask struct { |
|
|
TaskType int `json:"task_type" xorm:"not null default 0 comment('1:直推会员人数,2:直推会员活跃天数,3:直推会员等级') TINYINT(2)"` |
|
|
TaskType int `json:"task_type" xorm:"not null default 0 comment('1:直推会员人数,2:直推会员活跃天数,3:直推会员等级') TINYINT(2)"` |
|
|
WithinDays int `json:"within_days" xorm:"not null default 0 comment('多少天内完成') INT(11)"` |
|
|
WithinDays int `json:"within_days" xorm:"not null default 0 comment('多少天内完成') INT(11)"` |
|
|
FinishCount int `json:"finish_count" xorm:"not null default 0 comment('多少天内完成的指标数') INT(11)"` |
|
|
FinishCount int `json:"finish_count" xorm:"not null default 0 comment('多少天内完成的指标数') INT(11)"` |
|
|
|
|
|
ActiveDays int `json:"active_days" xorm:"comment('活跃多少天') INT(11)"` |
|
|
TaskTypeLevelId int `json:"task_type_level_id" xorm:"not null default 0 comment('会员等级id(task_type=3时生效)') INT(11)"` |
|
|
TaskTypeLevelId int `json:"task_type_level_id" xorm:"not null default 0 comment('会员等级id(task_type=3时生效)') INT(11)"` |
|
|
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') TIMESTAMP"` |
|
|
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') TIMESTAMP"` |
|
|
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') TIMESTAMP"` |
|
|
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') TIMESTAMP"` |
|
|