32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
// =================================================================================
|
||
// 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 users for DAO operations like Where/Data.
|
||
type Users struct {
|
||
g.Meta `orm:"table:users, do:true"`
|
||
Id any // 用户ID
|
||
Account any // 账号
|
||
Password any // 密码哈希
|
||
Nickname any // 昵称
|
||
Gender any // 性别:0未知 1男 2女
|
||
BirthDate *gtime.Time // 生日
|
||
UserType any // 用户类型:1 user 2 admin
|
||
CreatedAt *gtime.Time // 创建时间
|
||
UpdatedAt *gtime.Time // 更新时间
|
||
RealityRole any // 现实身份/角色
|
||
AbnormalRole any // 异常身份/角色
|
||
JobTitle any // 职位
|
||
Email any //
|
||
RedTrace any // 红轨
|
||
YellowTrace any // 黄轨
|
||
BlueTrace any // 蓝轨
|
||
}
|