This commit is contained in:
2025-12-02 13:36:09 +08:00
parent ee6dd64f98
commit 94718edd6b
97 changed files with 570 additions and 579 deletions

View File

@@ -79,11 +79,11 @@ public class RedisService {
/**
* @description 判断key是否存在
* @param key String 键
* @return boolean 是否存在
* @return BOOLEAN 是否存在
* @author yslg
* @since 2025-11-02
*/
public boolean hasKey(String key) {
public BOOLEAN hasKey(String key) {
return redisTemplate.hasKey(key);
}