This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -13,32 +13,32 @@ import (
// AdminMember is the golang structure of table hg_admin_member for DAO operations like Where/Data.
type AdminMember struct {
g.Meta `orm:"table:hg_admin_member, do:true"`
Id interface{} // 管理员ID
DeptId interface{} // 部门ID
RoleId interface{} // 角色ID
RealName interface{} // 真实姓名
Username interface{} // 帐号
PasswordHash interface{} // 密码
Salt interface{} // 密码盐
PasswordResetToken interface{} // 密码重置令牌
Integral interface{} // 积分
Balance interface{} // 余额
Avatar interface{} // 头像
Sex interface{} // 性别
Qq interface{} // qq
Email interface{} // 邮箱
Mobile interface{} // 手机号码
Id any // 管理员ID
DeptId any // 部门ID
RoleId any // 角色ID
RealName any // 真实姓名
Username any // 帐号
PasswordHash any // 密码
Salt any // 密码盐
PasswordResetToken any // 密码重置令牌
Integral any // 积分
Balance any // 余额
Avatar any // 头像
Sex any // 性别
Qq any // qq
Email any // 邮箱
Mobile any // 手机号码
Birthday *gtime.Time // 生日
CityId interface{} // 城市编码
Address interface{} // 联系地址
Pid interface{} // 上级管理员ID
Level interface{} // 关系树等级
Tree interface{} // 关系树
InviteCode interface{} // 邀请码
CityId any // 城市编码
Address any // 联系地址
Pid any // 上级管理员ID
Level any // 关系树等级
Tree any // 关系树
InviteCode any // 邀请码
Cash *gjson.Json // 提现配置
LastActiveAt *gtime.Time // 最后活跃时间
Remark interface{} // 备注
Status interface{} // 状态
Remark any // 备注
Status any // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}