浏览代码

update

master
shenjiachi 6 天前
父节点
当前提交
a26de3d455
共有 1 个文件被更改,包括 14 次插入10 次删除
  1. +14
    -10
      src/model/user_level_task.go

+ 14
- 10
src/model/user_level_task.go 查看文件

@@ -1,14 +1,18 @@
package model

import (
"time"
)

type UserLevelTask struct {
Id int `json:"id" xorm:"not null pk autoincr comment('主键id') INT(11)"`
LevelId int `json:"level_id" xorm:"not null default 0 comment('等级id') INT(11)"`
IsMustTask int `json:"is_must_task" xorm:"not null default 0 comment('是否必做(0,1)') TINYINT(1)"`
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"`
Id int `json:"id" xorm:"not null pk autoincr comment('主键id') INT(11)"`
LevelId int `json:"level_id" xorm:"not null default 0 comment('等级id') INT(11)"`
IsMustTask int `json:"is_must_task" xorm:"not null default 0 comment('是否必做(0,1)') TINYINT(1)"`
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:"not null comment('活跃多少天') INT(11)"`
TaskTypeLevelId int `json:"task_type_level_id" xorm:"not null default 0 comment('会员等级id(task_type=3时生效)') INT(11)"`
CreateAt time.Time `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') TIMESTAMP"`
UpdateAt time.Time `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') TIMESTAMP"`
}

正在加载...
取消
保存