Files

32 lines
1.1 KiB
Go
Raw Permalink Normal View History

2026-01-18 18:20:40 +08:00
// =================================================================================
// 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 // 生日
2026-01-18 20:35:21 +08:00
UserType any // 用户类型1 user 2 admin
2026-01-18 18:20:40 +08:00
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
RealityRole any // 现实身份/角色
AbnormalRole any // 异常身份/角色
JobTitle any // 职位
Email any //
RedTrace any // 红轨
YellowTrace any // 黄轨
BlueTrace any // 蓝轨
}