调整验证码

This commit is contained in:
TinyAnts 2022-09-07 15:21:18 +08:00
parent 82f2a92dfd
commit 18eb788ac9
2 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ public class SmsNotice {
// 1=业务通知, 2=验证码
if (noticeSetting.getType() == 2 && StringUtil.isNotNull(params.get("code"))) {
String code = params.get("code").toLowerCase();
RedisUtil.set(GlobalConfig.redisSmsCode+mobile, code);
RedisUtil.set(GlobalConfig.redisSmsCode+scene+":"+mobile, code);
}
}
}

View File

@ -188,13 +188,13 @@ public class LoginServiceImpl implements ILoginService {
String code = params.get("code").toLowerCase();
// 校验验证码
Object smsCode = RedisUtil.get(GlobalConfig.redisSmsCode+mobile);
Object smsCode = RedisUtil.get(GlobalConfig.redisSmsCode+"101:"+mobile);
if (StringUtil.isNull(smsCode) || !smsCode.toString().equals(code)) {
throw new OperateException("验证码错误!");
}
// 删除验证码
RedisUtil.del(GlobalConfig.redisSmsCode+mobile);
RedisUtil.del(GlobalConfig.redisSmsCode+"101:"+mobile);
// 查询手机号
User user = userMapper.selectOne(new QueryWrapper<User>()
@ -265,13 +265,13 @@ public class LoginServiceImpl implements ILoginService {
String password = params.get("password");
// 校验验证码
Object smsCode = RedisUtil.get(GlobalConfig.redisSmsCode+mobile);
Object smsCode = RedisUtil.get(GlobalConfig.redisSmsCode+"104:"+mobile);
if (StringUtil.isNull(smsCode) || !smsCode.toString().equals(code)) {
throw new OperateException("验证码错误!");
}
// 删除验证码
RedisUtil.del(GlobalConfig.redisSmsCode+mobile);
RedisUtil.del(GlobalConfig.redisSmsCode+"104:"+mobile);
// 查询手机号
User user = userMapper.selectOne(new QueryWrapper<User>()