This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemSmsLog is the golang structure for table system_sms_log.
type SystemSmsLog struct {
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
ChannelId int64 `json:"channelId" orm:"channel_id" description:"短信渠道编号"` // 短信渠道编号
ChannelCode string `json:"channelCode" orm:"channel_code" description:"短信渠道编码"` // 短信渠道编码
TemplateId int64 `json:"templateId" orm:"template_id" description:"模板编号"` // 模板编号
TemplateCode string `json:"templateCode" orm:"template_code" description:"模板编码"` // 模板编码
TemplateType int `json:"templateType" orm:"template_type" description:"短信类型"` // 短信类型
TemplateContent string `json:"templateContent" orm:"template_content" description:"短信内容"` // 短信内容
TemplateParams string `json:"templateParams" orm:"template_params" description:"短信参数"` // 短信参数
ApiTemplateId string `json:"apiTemplateId" orm:"api_template_id" description:"短信 API 的模板编号"` // 短信 API 的模板编号
Mobile string `json:"mobile" orm:"mobile" description:"手机号"` // 手机号
UserId int64 `json:"userId" orm:"user_id" description:"用户编号"` // 用户编号
UserType int `json:"userType" orm:"user_type" description:"用户类型"` // 用户类型
SendStatus int `json:"sendStatus" orm:"send_status" description:"发送状态"` // 发送状态
SendTime *gtime.Time `json:"sendTime" orm:"send_time" description:"发送时间"` // 发送时间
ApiSendCode string `json:"apiSendCode" orm:"api_send_code" description:"短信 API 发送结果的编码"` // 短信 API 发送结果的编码
ApiSendMsg string `json:"apiSendMsg" orm:"api_send_msg" description:"短信 API 发送失败的提示"` // 短信 API 发送失败的提示
ApiRequestId string `json:"apiRequestId" orm:"api_request_id" description:"短信 API 发送返回的唯一请求 ID"` // 短信 API 发送返回的唯一请求 ID
ApiSerialNo string `json:"apiSerialNo" orm:"api_serial_no" description:"短信 API 发送返回的序号"` // 短信 API 发送返回的序号
ReceiveStatus int `json:"receiveStatus" orm:"receive_status" description:"接收状态"` // 接收状态
ReceiveTime *gtime.Time `json:"receiveTime" orm:"receive_time" description:"接收时间"` // 接收时间
ApiReceiveCode string `json:"apiReceiveCode" orm:"api_receive_code" description:"API 接收结果的编码"` // API 接收结果的编码
ApiReceiveMsg string `json:"apiReceiveMsg" orm:"api_receive_msg" description:"API 接收结果的说明"` // API 接收结果的说明
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:"是否删除"` // 是否删除
}