using System.Collections.Generic; using System.Threading.Tasks; namespace YiSha.Business.Cache.IService { public interface IBaseBusinessCacheService { /// /// 缓存Key /// string CacheKey { get; } /// /// 删除 /// /// bool Remove(); /// /// 获取列表 /// /// Task> GetList(); } }