msg_code.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package msg_code
  2. import "time"
  3. // MsgCode 验证码列表
  4. type MsgCode struct {
  5. MsgCodeID int64 `gorm:"primaryKey;column:msg_code_id;type:bigint(20);not null" json:"-"` // 短信验证码id
  6. OpenID string `gorm:"index:open_id;column:open_id;type:varchar(32);not null" json:"openId"` // 用户id
  7. Mobile string `gorm:"index:mobile;column:mobile;type:varchar(50);not null" json:"mobile"` // 手机号/邮箱
  8. Code string `gorm:"column:code;type:varchar(20);not null" json:"code"` // 验证码
  9. ExpiredIn int64 `gorm:"column:expired_in;type:bigint(20);not null" json:"expiredIn"` // 过期时间
  10. Enabled int8 `gorm:"column:enabled;type:tinyint(1)" json:"enabled"` // 状态
  11. CreatedTime time.Time `gorm:"column:created_time;type:datetime;default:CURRENT_TIMESTAMP" json:"createdTime"` // 创建时间
  12. LastUpdatedTime time.Time `gorm:"column:last_updated_time;type:timestamp;not null;default:CURRENT_TIMESTAMP" json:"lastUpdatedTime"`
  13. }
  14. // TableName get sql table name.获取数据库表名
  15. func (m *MsgCode) TableName() string {
  16. return "msg_code"
  17. }
  18. // MsgCodeColumns get sql column name.获取数据库列名
  19. var MsgCodeColumns = struct {
  20. MsgCodeID string
  21. OpenID string
  22. Mobile string
  23. Code string
  24. ExpiredIn string
  25. Enabled string
  26. CreatedTime string
  27. LastUpdatedTime string
  28. }{
  29. MsgCodeID: "msg_code_id",
  30. OpenID: "open_id",
  31. Mobile: "mobile",
  32. Code: "code",
  33. ExpiredIn: "expired_in",
  34. Enabled: "enabled",
  35. CreatedTime: "created_time",
  36. LastUpdatedTime: "last_updated_time",
  37. }