2022-02-25 17:11:17 +08:00
|
|
|
// =================================================================================
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
// =================================================================================
|
|
|
|
|
2022-11-24 23:37:34 +08:00
|
|
|
package do
|
2022-02-25 17:11:17 +08:00
|
|
|
|
|
|
|
import (
|
2023-02-08 20:29:34 +08:00
|
|
|
"github.com/gogf/gf/v2/encoding/gjson"
|
2022-02-25 17:11:17 +08:00
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AdminMember is the golang structure of table hg_admin_member for DAO operations like Where/Data.
|
|
|
|
type AdminMember struct {
|
2022-11-24 23:37:34 +08:00
|
|
|
g.Meta `orm:"table:hg_admin_member, do:true"`
|
2023-01-18 16:23:39 +08:00
|
|
|
Id interface{} // 管理员ID
|
2022-02-25 17:11:17 +08:00
|
|
|
DeptId interface{} // 部门ID
|
2023-01-18 16:23:39 +08:00
|
|
|
RoleId interface{} // 角色ID
|
|
|
|
RealName interface{} // 真实姓名
|
2022-02-25 17:11:17 +08:00
|
|
|
Username interface{} // 帐号
|
|
|
|
PasswordHash interface{} // 密码
|
|
|
|
Salt interface{} // 密码盐
|
|
|
|
AuthKey interface{} // 授权令牌
|
|
|
|
PasswordResetToken interface{} // 密码重置令牌
|
2023-02-08 20:29:34 +08:00
|
|
|
Balance interface{} // 余额
|
2022-02-25 17:11:17 +08:00
|
|
|
Avatar interface{} // 头像
|
2023-01-18 16:23:39 +08:00
|
|
|
Sex interface{} // 性别
|
2022-02-25 17:11:17 +08:00
|
|
|
Qq interface{} // qq
|
|
|
|
Email interface{} // 邮箱
|
|
|
|
Mobile interface{} // 手机号码
|
2023-01-18 16:23:39 +08:00
|
|
|
Birthday *gtime.Time // 生日
|
|
|
|
CityId interface{} // 城市编码
|
|
|
|
Address interface{} // 联系地址
|
|
|
|
Pid interface{} // 上级管理员ID
|
|
|
|
Level interface{} // 关系树等级
|
|
|
|
Tree interface{} // 关系树
|
2023-02-08 20:29:34 +08:00
|
|
|
Cash *gjson.Json // 提现配置
|
|
|
|
LastActiveAt *gtime.Time // 最后活跃时间
|
2022-02-25 17:11:17 +08:00
|
|
|
Remark interface{} // 备注
|
|
|
|
Status interface{} // 状态
|
|
|
|
CreatedAt *gtime.Time // 创建时间
|
|
|
|
UpdatedAt *gtime.Time // 修改时间
|
|
|
|
}
|