|
|
@@ -11,7 +11,7 @@ type User struct { |
|
|
|
Passcode string `json:"passcode" xorm:"not null default '' comment('支付密码') CHAR(50)"` |
|
|
|
Level int `json:"level" xorm:"not null default 0 comment('用户等级id') INT(11)"` |
|
|
|
InviteTotal int `json:"invite_total" xorm:"not null default 0 comment('直推邀请总人数') INT(11)"` |
|
|
|
State int `json:"state" xorm:"not null default 1 comment('1正常,2冻结') TINYINT(1)"` |
|
|
|
State int `json:"state" xorm:"not null default 1 comment('1正常,2冻结 3删除中 4进入回收站') TINYINT(1)"` |
|
|
|
LastLoginIp string `json:"last_login_ip" xorm:"not null default '' comment('最后登录IP') CHAR(50)"` |
|
|
|
Sex int `json:"sex" xorm:"not null default 0 comment('性别(0:未知 1:男 2:女)') TINYINT(1)"` |
|
|
|
ParentUid int64 `json:"parent_uid" xorm:"not null default 0 comment('父级id') BIGINT(20)"` |
|
|
@@ -19,8 +19,9 @@ type User struct { |
|
|
|
CustomInviteCode string `json:"custom_invite_code" xorm:"not null default '' comment('自定义邀请码') CHAR(50)"` |
|
|
|
Memo string `json:"memo" xorm:"not null default '' comment('备注信息') VARCHAR(244)"` |
|
|
|
IsRealName int `json:"is_real_name" xorm:"not null default 0 comment('是否实名(0:未实名 1.已实名)') TINYINT(1)"` |
|
|
|
RegisterType int `json:"register_type" xorm:"not null comment('注册类型(1:APP注册、2:H5注册)') TINYINT(3)"` |
|
|
|
LastLoginAt string `json:"last_login_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('上次登录时间') DATETIME"` |
|
|
|
CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"` |
|
|
|
UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' DATETIME"` |
|
|
|
RegisterType int `json:"register_type" xorm:"not null default 1 comment('注册类型(1:APP注册、2:H5注册)') TINYINT(1)"` |
|
|
|
LastLoginAt string `json:"last_login_at" xorm:"not null default CURRENT_TIMESTAMP comment('最近登录时间') DATETIME"` |
|
|
|
CreateAt string `json:"create_at" xorm:"not null default CURRENT_TIMESTAMP DATETIME"` |
|
|
|
UpdateAt string `json:"update_at" xorm:"not null default CURRENT_TIMESTAMP DATETIME"` |
|
|
|
RecycleParentUid int `json:"recycle_parent_uid" xorm:"default 0 comment('删除到回收站时候的上级') INT(11)"` |
|
|
|
} |