namespace iWare.Wms.Application
|
{
|
public interface ISysCacheService
|
{
|
Task SetDict(List<DictTreeOutput> list);
|
//Task<List<AntDesignTreeNode>> GetDict();
|
//Task<List<AntDesignTreeNode>> GetDictForName(string dictName);
|
Task<string> GetDictForName(string dictName, object code);
|
|
|
Task AddCacheKey(string cacheKey);
|
|
Task DelByPatternAsync(string key);
|
|
Task DelCacheKey(string cacheKey);
|
|
bool Exists(string cacheKey);
|
|
Task<List<string>> GetAllCacheKeys();
|
|
Task<T> GetAsync<T>(string cacheKey);
|
|
Task<List<long>> GetDataScope(long userId);
|
|
Task<List<AntDesignTreeNode>> GetMenu(long userId, string appCode);
|
|
Task<List<string>> GetPermission(long userId);
|
|
Task RemovePermission(long userId);
|
|
Task<string> GetStringAsync(string cacheKey);
|
|
Task RemoveAsync(string key);
|
|
Task SetAsync(string cacheKey, object value);
|
|
Task SetDataScope(long userId, List<long> dataScopes);
|
|
Task SetMenu(long userId, string appCode, List<AntDesignTreeNode> menus);
|
|
Task SetPermission(long userId, List<string> permissions);
|
|
Task SetStringAsync(string cacheKey, string value);
|
}
|
}
|