Hub-Api/models/code.go

12 lines
329 B
Go

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"`
}