后端: Go(Gin+GORM+MySQL+Redis) - 17张业务表(yz_pw_前缀), 自动迁移 - JWT认证(3小时) + 盐+MD5密码 + 图形验证码 - 班级CRUD/加入(8人姓名验证/邀请码)/审核/30天自动清理 - 系统配置(16项)/菜单管理(动态路由)/数据统计 - 文件MD5去重/数据隔离/账号封禁/敏感词DFA检测 前端: Vue3+Vite+Element Plus+Less+ECharts+FontAwesome - 动态路由(数据库菜单驱动) - 蓝白配色, H5响应式 - 登录/注册/忘记密码/个人中心 - 班级创建向导/详情/加入/列表 - 管理后台: 审核/配置/菜单/统计/用户/敏感词 数据库: MySQL 10.31.100.3:3306/photowall 管理员: hero920103 / 920103
25 lines
866 B
Go
25 lines
866 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
// SmsCode 短信验证码表
|
|
type SmsCode struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
Phone string `gorm:"size:20;index;not null" json:"phone"`
|
|
Code string `gorm:"size:8;not null" json:"-"`
|
|
Scene string `gorm:"size:32;not null" json:"scene"` // login / register / reset_password
|
|
Used bool `gorm:"default:false" json:"used"`
|
|
ExpireAt time.Time `json:"expire_at"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|
|
|
|
// PasswordReset 密码重置码表
|
|
type PasswordReset struct {
|
|
ID uint `gorm:"primaryKey" json:"id"`
|
|
UserID uint `gorm:"index;not null" json:"user_id"`
|
|
Code string `gorm:"size:8;index;not null" json:"-"`
|
|
Used bool `gorm:"default:false" json:"used"`
|
|
ExpireAt time.Time `json:"expire_at"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|