43 lines
1.8 KiB
Go
43 lines
1.8 KiB
Go
// =================================================================================
|
|
// 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"
|
|
)
|
|
|
|
// SystemSmsLog is the golang structure of table system_sms_log for DAO operations like Where/Data.
|
|
type SystemSmsLog struct {
|
|
g.Meta `orm:"table:system_sms_log, do:true"`
|
|
Id interface{} // 编号
|
|
ChannelId interface{} // 短信渠道编号
|
|
ChannelCode interface{} // 短信渠道编码
|
|
TemplateId interface{} // 模板编号
|
|
TemplateCode interface{} // 模板编码
|
|
TemplateType interface{} // 短信类型
|
|
TemplateContent interface{} // 短信内容
|
|
TemplateParams interface{} // 短信参数
|
|
ApiTemplateId interface{} // 短信 API 的模板编号
|
|
Mobile interface{} // 手机号
|
|
UserId interface{} // 用户编号
|
|
UserType interface{} // 用户类型
|
|
SendStatus interface{} // 发送状态
|
|
SendTime *gtime.Time // 发送时间
|
|
ApiSendCode interface{} // 短信 API 发送结果的编码
|
|
ApiSendMsg interface{} // 短信 API 发送失败的提示
|
|
ApiRequestId interface{} // 短信 API 发送返回的唯一请求 ID
|
|
ApiSerialNo interface{} // 短信 API 发送返回的序号
|
|
ReceiveStatus interface{} // 接收状态
|
|
ReceiveTime *gtime.Time // 接收时间
|
|
ApiReceiveCode interface{} // API 接收结果的编码
|
|
ApiReceiveMsg interface{} // API 接收结果的说明
|
|
Creator interface{} // 创建者
|
|
CreateTime *gtime.Time // 创建时间
|
|
Updater interface{} // 更新者
|
|
UpdateTime *gtime.Time // 更新时间
|
|
Deleted interface{} // 是否删除
|
|
}
|