消除警告

This commit is contained in:
IMaster 2025-04-16 18:26:12 +08:00
parent 8525434149
commit 10140c0ea6

View File

@ -403,7 +403,7 @@ public class SysCacheService : IDynamicApiController, ISingleton
return keys.Select(k => _cacheProvider.Cache.Get<T>(k)).ToList();
}
// <summary>
/// <summary>
/// 批量获取哈希缓存字段值(哈希结构)🔖
/// </summary>
/// <typeparam name="T">值类型</typeparam>
@ -637,6 +637,7 @@ public class SysCacheService : IDynamicApiController, ISingleton
{
_cacheProvider.Cache.SetExpire(key, expiry.Value);
}
await Task.CompletedTask;
return true;
}