Ver código fonte

update

master
shenjiachi 6 dias atrás
pai
commit
7bfed5d258
1 arquivos alterados com 10 adições e 14 exclusões
  1. +10
    -14
      src/model/user_level_task.go

+ 10
- 14
src/model/user_level_task.go Ver arquivo

@@ -1,18 +1,14 @@
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:"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"`
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 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"`
}

Carregando…
Cancelar
Salvar