From 66d171ee7c81462edb84dcbc3d75033f1e4269fa Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 25 Aug 2020 19:00:26 +0800 Subject: [PATCH] modify open entrust order --- src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java index 842de88..265b41a 100644 --- a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java +++ b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java @@ -26,12 +26,15 @@ @Override public boolean verifyCode(String account, String code) { String cacheCode = redisUtils.getString(AppContants.VERIFY_CODE_PREFIX + account); - log.info("---->{}", cacheCode); if (StrUtil.isBlank(cacheCode)) { return false; } - - return code.equals(cacheCode); + if (code.equals(cacheCode)) { + redisUtils.del(AppContants.VERIFY_CODE_PREFIX + account); + return true; + } else { + return false; + } } @Override -- Gitblit v1.9.1