浏览代码

添加物联网注册登录接口

humingfen 5 年之前
父节点
当前提交
23c4f427d1

+ 1 - 1
server/svr-authentication/src/main/java/com/yihu/jw/security/oauth2/core/redis/WlyyRedisVerifyCodeService.java

@ -42,7 +42,7 @@ public class WlyyRedisVerifyCodeService {
    public boolean verification (String client_id, String username, String code) {
        if (StringUtils.isEmpty(code)) {
            return true;
            return false;
        }
        String key = client_id + ":" + username + KEY_SUFFIX;
        String _code = (String) redisTemplate.opsForValue().get(key);