CacheKeys.cs 311 B

12345678910111213141516
  1. namespace JiaZhiQuan.Common
  2. {
  3. /// <summary>
  4. /// Redis中的Key值
  5. /// </summary>
  6. public static partial class CacheKeys
  7. {
  8. private const string PREFIX = "JZQ_";
  9. private static string GenerateKey(string key)
  10. {
  11. return $"{PREFIX}{key}";
  12. }
  13. }
  14. }