// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // SystemMailAccount is the golang structure for table system_mail_account. type SystemMailAccount struct { Id int64 `json:"id" orm:"id" description:"主键"` // 主键 Mail string `json:"mail" orm:"mail" description:"邮箱"` // 邮箱 Username string `json:"username" orm:"username" description:"用户名"` // 用户名 Password string `json:"password" orm:"password" description:"密码"` // 密码 Host string `json:"host" orm:"host" description:"SMTP 服务器域名"` // SMTP 服务器域名 Port int `json:"port" orm:"port" description:"SMTP 服务器端口"` // SMTP 服务器端口 SslEnable bool `json:"sslEnable" orm:"ssl_enable" description:"是否开启 SSL"` // 是否开启 SSL StarttlsEnable bool `json:"starttlsEnable" orm:"starttls_enable" description:"是否开启 STARTTLS"` // 是否开启 STARTTLS 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:"是否删除"` // 是否删除 }