类型修正

This commit is contained in:
2025-12-02 16:13:28 +08:00
parent 28787e5b29
commit 90ddcf7af3
82 changed files with 350 additions and 350 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);
}