// namespace SafeCampus.Plugin.Aop; /// /// 缓存结果特性 /// public class CacheAttribute : Attribute { /// /// RedisKey前缀 /// public string KeyPrefix { get; set; } /// /// 过期时间 /// public TimeSpan? AbsoluteExpiration { get; set; } /// /// 自定义KEY /// public string CustomKeyValue { get; set; } /// /// 是否删除 /// public bool IsDelete { get; set; } = false; /// /// 存储类型 /// public string StoreType { get; set; } }