namespace JiaZhiQuan.Common { /// /// Redis中的Key值 /// public static partial class CacheKeys { private const string PREFIX = "JZQ_"; private static string GenerateKey(string key) { return $"{PREFIX}{key}"; } } }