36 lines
1.4 KiB
Go
Executable File
36 lines
1.4 KiB
Go
Executable File
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// Users is the golang structure of table hg_users for DAO operations like Where/Data.
|
|
type Users struct {
|
|
g.Meta `orm:"table:hg_users, do:true"`
|
|
Id interface{} // id
|
|
Phone interface{} // 手机号
|
|
Nickname interface{} // 昵称
|
|
Email interface{} // 邮箱
|
|
Avatar interface{} // 头像URL
|
|
Introduce interface{} // 个人简介
|
|
Password interface{} // 密码
|
|
Salt interface{} // 密码盐
|
|
Realname interface{} // 真实姓名
|
|
Gender interface{} // 性别
|
|
Birthday interface{} // 生日
|
|
School interface{} // 学校
|
|
Grade interface{} // 学历
|
|
Major interface{} // 专业
|
|
Status interface{} // 用户状态
|
|
VerificationToken interface{} // 邮箱验证令牌
|
|
EmailVerified interface{} // 邮箱验证状态
|
|
CreatedAt *gtime.Time // 注册时间
|
|
LastLogin *gtime.Time // 最后登录时间
|
|
LoginCount interface{} // 累计登录次数
|
|
}
|