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