You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package model
-
- type User struct {
- Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
- Phone string `json:"phone" xorm:"not null default '' comment('手机号') VARCHAR(255)"`
- UnionId string `json:"union_id" xorm:"not null default '' comment('微信用户id') VARCHAR(255)"`
- OpenId string `json:"open_id" xorm:"not null default '' comment('微信openid') VARCHAR(255)"`
- Nickname string `json:"nickname" xorm:"not null default '' comment('昵称') VARCHAR(255)"`
- Avatar string `json:"avatar" xorm:"not null default '' comment('头像') VARCHAR(255)"`
- Password string `json:"password" xorm:"not null default '' comment('密码') CHAR(50)"`
- 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冻结 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)"`
- SystemInviteCode string `json:"system_invite_code" xorm:"not null default '' comment('系统邀请码') CHAR(50)"`
- 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 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)"`
- WechatAccount string `json:"wechat_account" xorm:"comment('微信号') VARCHAR(255)"`
- }
|