init
This commit is contained in:
36
internal/model/do/system_mail_log.go
Normal file
36
internal/model/do/system_mail_log.go
Normal file
@@ -0,0 +1,36 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package do
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/frame/g"
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// SystemMailLog is the golang structure of table system_mail_log for DAO operations like Where/Data.
|
||||
type SystemMailLog struct {
|
||||
g.Meta `orm:"table:system_mail_log, do:true"`
|
||||
Id interface{} // 编号
|
||||
UserId interface{} // 用户编号
|
||||
UserType interface{} // 用户类型
|
||||
ToMail interface{} // 接收邮箱地址
|
||||
AccountId interface{} // 邮箱账号编号
|
||||
FromMail interface{} // 发送邮箱地址
|
||||
TemplateId interface{} // 模板编号
|
||||
TemplateCode interface{} // 模板编码
|
||||
TemplateNickname interface{} // 模版发送人名称
|
||||
TemplateTitle interface{} // 邮件标题
|
||||
TemplateContent interface{} // 邮件内容
|
||||
TemplateParams interface{} // 邮件参数
|
||||
SendStatus interface{} // 发送状态
|
||||
SendTime *gtime.Time // 发送时间
|
||||
SendMessageId interface{} // 发送返回的消息 ID
|
||||
SendException interface{} // 发送异常
|
||||
Creator interface{} // 创建者
|
||||
CreateTime *gtime.Time // 创建时间
|
||||
Updater interface{} // 更新者
|
||||
UpdateTime *gtime.Time // 更新时间
|
||||
Deleted interface{} // 是否删除
|
||||
}
|
||||
Reference in New Issue
Block a user