CacheKeys.MP.cs 305 B

1234567891011121314
  1. namespace JiaZhiQuan.Common
  2. {
  3. public static partial class CacheKeys
  4. {
  5. public const int MPPostWarningCacheSecs = 60 * 60; // 缓存1小时
  6. public static string MPPostWarning(long postId)
  7. {
  8. return GenerateKey($"mp:postwarning:{postId}");
  9. }
  10. }
  11. }