Files
epic-go/internal/model/entity/system_mail_log.go
hu xiaotong 85e3a6540b init
2025-06-20 17:17:02 +08:00

35 lines
3.1 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemMailLog is the golang structure for table system_mail_log.
type SystemMailLog struct {
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
UserId int64 `json:"userId" orm:"user_id" description:"用户编号"` // 用户编号
UserType int `json:"userType" orm:"user_type" description:"用户类型"` // 用户类型
ToMail string `json:"toMail" orm:"to_mail" description:"接收邮箱地址"` // 接收邮箱地址
AccountId int64 `json:"accountId" orm:"account_id" description:"邮箱账号编号"` // 邮箱账号编号
FromMail string `json:"fromMail" orm:"from_mail" description:"发送邮箱地址"` // 发送邮箱地址
TemplateId int64 `json:"templateId" orm:"template_id" description:"模板编号"` // 模板编号
TemplateCode string `json:"templateCode" orm:"template_code" description:"模板编码"` // 模板编码
TemplateNickname string `json:"templateNickname" orm:"template_nickname" description:"模版发送人名称"` // 模版发送人名称
TemplateTitle string `json:"templateTitle" orm:"template_title" description:"邮件标题"` // 邮件标题
TemplateContent string `json:"templateContent" orm:"template_content" description:"邮件内容"` // 邮件内容
TemplateParams string `json:"templateParams" orm:"template_params" description:"邮件参数"` // 邮件参数
SendStatus int `json:"sendStatus" orm:"send_status" description:"发送状态"` // 发送状态
SendTime *gtime.Time `json:"sendTime" orm:"send_time" description:"发送时间"` // 发送时间
SendMessageId string `json:"sendMessageId" orm:"send_message_id" description:"发送返回的消息 ID"` // 发送返回的消息 ID
SendException string `json:"sendException" orm:"send_exception" description:"发送异常"` // 发送异常
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
}