mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-12-27 02:26:00 +08:00
版本预发布
This commit is contained in:
23
server/internal/model/entity/sys_ems_log.go
Normal file
23
server/internal/model/entity/sys_ems_log.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// =================================================================================
|
||||
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SysEmsLog is the golang structure for table sys_ems_log.
|
||||
type SysEmsLog struct {
|
||||
Id int64 `json:"id" description:"主键"`
|
||||
Event string `json:"event" description:"事件"`
|
||||
Email string `json:"email" description:"邮箱地址,多个用;隔开"`
|
||||
Code string `json:"code" description:"验证码"`
|
||||
Times int64 `json:"times" description:"验证次数"`
|
||||
Content string `json:"content" description:"邮件内容"`
|
||||
Ip string `json:"ip" description:"ip地址"`
|
||||
Status int `json:"status" description:"状态(1未验证,2已验证)"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
|
||||
}
|
||||
Reference in New Issue
Block a user