YiTao/model/captcha_model.go
2024-11-09 14:59:27 +08:00

17 lines
331 B
Go

package model
import "time"
type CaptchaModel struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time `gorm:"column:added;autoCreateTime"`
Code string
Key string `gorm:"column:captkey;autoCreateTime"`
State int
Data string
}
func (m *CaptchaModel) TableName() string {
return "captcha"
}