Hub-Api/models/code.go

12 lines
329 B
Go
Raw Permalink Normal View History

2024-06-17 18:54:08 +03:30
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"`
}