集成,总结MES功能
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

16 行
514 B

  1. namespace BPA.MES.Base.Application
  2. {
  3. public interface ISysCacheService
  4. {
  5. Task AddCacheKey(string cacheKey);
  6. Task DelCacheKey(string cacheKey);
  7. bool Exists(string cacheKey);
  8. Task<List<string>> GetAllCacheKeys();
  9. Task<T> GetAsync<T>(string cacheKey);
  10. Task<string> GetStringAsync(string cacheKey);
  11. Task RemoveAsync(string key);
  12. Task SetAsync(string cacheKey, object value);
  13. Task SetStringAsync(string cacheKey, string value);
  14. }
  15. }