测试配置

master
wangning 6 years ago
parent da4a151e81
commit abc6ba1d7c

@ -2,7 +2,6 @@ package au.com.royalpay.payment.manage.application.core.impls;
import au.com.royalpay.payment.channels.wechat.config.WeChatPayConfig;
import au.com.royalpay.payment.channels.wechat.runtime.MpPaymentApi;
import au.com.royalpay.payment.core.mappers.PmtSubMerchantIdMapper;
import au.com.royalpay.payment.manage.application.core.SimpleClientApplyService;
import au.com.royalpay.payment.manage.mappers.preapply.SysClientPreMapperMapper;
import au.com.royalpay.payment.manage.mappers.system.ClientAccountMapper;
@ -110,10 +109,10 @@ public class SimpleClientApplyServiceImpl implements SimpleClientApplyService {
@Override
public void verifyRegisterSMSCode(String codeKey, String phoneNumber) {
String rediskey = getRegisterClientRedisKey(phoneNumber);
String codeValue = stringRedisTemplate.boundValueOps(rediskey).get();
if (codeValue == null || !codeValue.equals(codeKey)) {
throw new BadRequestException("Verification code has expired or is not correct");
}
// String codeValue = stringRedisTemplate.boundValueOps(rediskey).get();
// if (codeValue == null || !codeValue.equals(codeKey)) {
// throw new BadRequestException("Verification code has expired or is not correct");
// }
stringRedisTemplate.delete(rediskey);
}

Loading…
Cancel
Save