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

27 lines
1.8 KiB
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemSmsChannel is the golang structure for table system_sms_channel.
type SystemSmsChannel struct {
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
Signature string `json:"signature" orm:"signature" description:"短信签名"` // 短信签名
Code string `json:"code" orm:"code" description:"渠道编码"` // 渠道编码
Status int `json:"status" orm:"status" description:"开启状态"` // 开启状态
Remark string `json:"remark" orm:"remark" description:"备注"` // 备注
ApiKey string `json:"apiKey" orm:"api_key" description:"短信 API 的账号"` // 短信 API 的账号
ApiSecret string `json:"apiSecret" orm:"api_secret" description:"短信 API 的秘钥"` // 短信 API 的秘钥
CallbackUrl string `json:"callbackUrl" orm:"callback_url" description:"短信发送回调 URL"` // 短信发送回调 URL
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:"是否删除"` // 是否删除
}