CacheTime.cs 786 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace KC.Cache
  7. {
  8. public enum CacheTime
  9. {
  10. /// <summary>
  11. /// 数据缓存时间
  12. /// 700min
  13. /// </summary>
  14. Data = 700,
  15. /// <summary>
  16. /// 开奖号数据缓存时间
  17. /// </summary>
  18. KjhData = 5,
  19. /// <summary>
  20. /// 全国彩开奖号数据缓存时间
  21. /// </summary>
  22. KjhData_QG = 10,
  23. /// <summary>
  24. /// 开奖号历史数据缓存时间
  25. /// </summary>
  26. KjhData_Ls = 100,
  27. /// <summary>
  28. /// 首页开奖今日数据缓存时间
  29. /// 60分钟
  30. /// </summary>
  31. KjhDataToDay_Qg=60,
  32. }
  33. }