Files
novel/internal/model/do/phone_verify.go
2024-01-12 18:08:51 +08:00

22 lines
725 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// 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"
)
// PhoneVerify is the golang structure of table nv_phone_verify for DAO operations like Where/Data.
type PhoneVerify struct {
g.Meta `orm:"table:nv_phone_verify, do:true"`
Id interface{} //
Phone interface{} // 手机号
Code interface{} // 验证码
Type interface{} // 类型1-注册/登录2-找回密码
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
}