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

20 lines
792 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 entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// PhoneVerify is the golang structure for table phone_verify.
type PhoneVerify struct {
Id uint64 `json:"id" description:""`
Phone string `json:"phone" description:"手机号"`
Code string `json:"code" description:"验证码"`
Type uint `json:"type" description:"类型1-注册/登录2-找回密码"`
CreatedAt *gtime.Time `json:"createdAt" description:""`
UpdatedAt *gtime.Time `json:"updatedAt" description:""`
}