From 415cfc1f03c660be21b6f0b42a4524c477e02730 Mon Sep 17 00:00:00 2001 From: shenjiachi Date: Thu, 5 Dec 2024 20:16:00 +0800 Subject: [PATCH] update --- src/model/user_level_task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/model/user_level_task.go b/src/model/user_level_task.go index f82f7c5..8f54b97 100644 --- a/src/model/user_level_task.go +++ b/src/model/user_level_task.go @@ -7,6 +7,7 @@ type UserLevelTask struct { 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)"` 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)"` 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"`