30 lines
2.3 KiB
Go
30 lines
2.3 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SystemSmsTemplate is the golang structure for table system_sms_template.
|
|
type SystemSmsTemplate struct {
|
|
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
|
|
Type int `json:"type" orm:"type" description:"模板类型"` // 模板类型
|
|
Status int `json:"status" orm:"status" description:"开启状态"` // 开启状态
|
|
Code string `json:"code" orm:"code" description:"模板编码"` // 模板编码
|
|
Name string `json:"name" orm:"name" description:"模板名称"` // 模板名称
|
|
Content string `json:"content" orm:"content" description:"模板内容"` // 模板内容
|
|
Params string `json:"params" orm:"params" description:"参数数组"` // 参数数组
|
|
Remark string `json:"remark" orm:"remark" description:"备注"` // 备注
|
|
ApiTemplateId string `json:"apiTemplateId" orm:"api_template_id" description:"短信 API 的模板编号"` // 短信 API 的模板编号
|
|
ChannelId int64 `json:"channelId" orm:"channel_id" description:"短信渠道编号"` // 短信渠道编号
|
|
ChannelCode string `json:"channelCode" orm:"channel_code" 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:"是否删除"` // 是否删除
|
|
}
|