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

@@ -12,14 +12,14 @@ import (
// SysEmsLog is the golang structure of table hg_sys_ems_log for DAO operations like Where/Data.
type SysEmsLog struct {
g.Meta `orm:"table:hg_sys_ems_log, do:true"`
Id interface{} // 主键
Event interface{} // 事件
Email interface{} // 邮箱地址,多个用;隔开
Code interface{} // 验证码
Times interface{} // 验证次数
Content interface{} // 邮件内容
Ip interface{} // ip地址
Status interface{} // 状态(1未验证,2已验证)
Id any // 主键
Event any // 事件
Email any // 邮箱地址,多个用;隔开
Code any // 验证码
Times any // 验证次数
Content any // 邮件内容
Ip any // ip地址
Status any // 状态(1未验证,2已验证)
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}