init
This commit is contained in:
30
internal/model/do/system_sms_code.go
Normal file
30
internal/model/do/system_sms_code.go
Normal file
@@ -0,0 +1,30 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// SystemSmsCode is the golang structure of table system_sms_code for DAO operations like Where/Data.
|
||||
type SystemSmsCode struct {
|
||||
g.Meta `orm:"table:system_sms_code, do:true"`
|
||||
Id interface{} // 编号
|
||||
Mobile interface{} // 手机号
|
||||
Code interface{} // 验证码
|
||||
CreateIp interface{} // 创建 IP
|
||||
Scene interface{} // 发送场景
|
||||
TodayIndex interface{} // 今日发送的第几条
|
||||
Used interface{} // 是否使用
|
||||
UsedTime *gtime.Time // 使用时间
|
||||
UsedIp interface{} // 使用 IP
|
||||
Creator interface{} // 创建者
|
||||
CreateTime *gtime.Time // 创建时间
|
||||
Updater interface{} // 更新者
|
||||
UpdateTime *gtime.Time // 更新时间
|
||||
Deleted interface{} // 是否删除
|
||||
TenantId interface{} // 租户编号
|
||||
}
|
||||
Reference in New Issue
Block a user