// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // SystemSmsCode is the golang structure for table system_sms_code. type SystemSmsCode struct { Id int64 `json:"id" orm:"id" description:"编号"` // 编号 Mobile string `json:"mobile" orm:"mobile" description:"手机号"` // 手机号 Code string `json:"code" orm:"code" description:"验证码"` // 验证码 CreateIp string `json:"createIp" orm:"create_ip" description:"创建 IP"` // 创建 IP Scene int `json:"scene" orm:"scene" description:"发送场景"` // 发送场景 TodayIndex int `json:"todayIndex" orm:"today_index" description:"今日发送的第几条"` // 今日发送的第几条 Used int `json:"used" orm:"used" description:"是否使用"` // 是否使用 UsedTime *gtime.Time `json:"usedTime" orm:"used_time" description:"使用时间"` // 使用时间 UsedIp string `json:"usedIp" orm:"used_ip" description:"使用 IP"` // 使用 IP 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:"是否删除"` // 是否删除 TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号 }