mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 20:23:52 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -12,13 +12,13 @@ import (
|
||||
// SysSmsLog is the golang structure of table hg_sys_sms_log for DAO operations like Where/Data.
|
||||
type SysSmsLog struct {
|
||||
g.Meta `orm:"table:hg_sys_sms_log, do:true"`
|
||||
Id interface{} // 主键
|
||||
Event interface{} // 事件
|
||||
Mobile interface{} // 手机号
|
||||
Code interface{} // 验证码或短信内容
|
||||
Times interface{} // 验证次数
|
||||
Ip interface{} // ip地址
|
||||
Status interface{} // 状态(1未验证,2已验证)
|
||||
Id any // 主键
|
||||
Event any // 事件
|
||||
Mobile any // 手机号
|
||||
Code any // 验证码或短信内容
|
||||
Times any // 验证次数
|
||||
Ip any // ip地址
|
||||
Status any // 状态(1未验证,2已验证)
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 更新时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user