实现个人客户微信认证和短信验证功能
- 添加个人客户微信登录和手机验证码登录接口 - 实现个人客户设备、ICCID、手机号关联管理 - 添加短信发送服务(HTTP 客户端) - 添加微信认证服务(含 mock 实现) - 添加 JWT Token 生成和验证工具 - 创建数据库迁移脚本(personal_customer 关联表) - 修复测试文件中的路由注册参数错误 - 重构 scripts 目录结构(分离独立脚本到子目录) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -106,3 +106,10 @@ const (
|
||||
const (
|
||||
MaxShopLevel = 7 // 店铺最大层级
|
||||
)
|
||||
|
||||
// 验证码配置常量
|
||||
const (
|
||||
VerificationCodeLength = 6 // 验证码长度(6位数字)
|
||||
VerificationCodeExpiration = 5 * time.Minute // 验证码过期时间(5分钟)
|
||||
VerificationCodeRateLimit = 60 * time.Second // 验证码发送频率限制(60秒)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user