xiaoyong931011
2021-05-12 feab2b9842a8f3529804d8de0d16589c2ed05268
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