From 31ba782e2e3f82a65bdf6cb1a2d6f0fba73f312d Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 19 Mar 2021 18:02:56 +0800
Subject: [PATCH] 20210318 活动信息注册时,初始化
---
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