12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace KC.Cache
- {
- public enum CacheTime
- {
- /// <summary>
- /// 数据缓存时间
- /// 700min
- /// </summary>
- Data = 700,
- /// <summary>
- /// 开奖号数据缓存时间
- /// </summary>
- KjhData = 5,
- /// <summary>
- /// 全国彩开奖号数据缓存时间
- /// </summary>
- KjhData_QG = 10,
- /// <summary>
- /// 开奖号历史数据缓存时间
- /// </summary>
- KjhData_Ls = 100,
- /// <summary>
- /// 首页开奖今日数据缓存时间
- /// 60分钟
- /// </summary>
- KjhDataToDay_Qg=60,
- }
- }
|