|
@ -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);
|