|
package models
|
|
|
|
import "time"
|
|
|
|
type LoginCode struct {
|
|
LoginCode_id uint `gorm:"primaryKey"`
|
|
PhoneNumber string `gorm:"not null" validate:"required"`
|
|
Code string `gorm:"not null" validate:"required"`
|
|
CreatedAt time.Time `gorm:"not null"`
|
|
ExpiresAt time.Time `gorm:"not null"`
|
|
}
|