1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace KC.Cache
- {
- public static class CacheConstant
- {
- #region 服务
- /// <summary>
- /// 服务全国彩名称
- /// </summary>
- public static string Service = "KCService_";
-
- public static string IpUser = "IpUser";
- #endregion
- #region 走势图
- public static string LotteryALL = "LotteryChart";//所有的数据 全国,地方,高频的前缀
- public static string Zst_Zst = "Zst_Zst";//走势图首页的前缀
- public static string Zst_Tool = "Zst_Tool";//工具首页的前缀
- public static string ZstOutInfo = "ZstOutInfo";//所有走势图输出前缀
- #endregion
- #region 开奖号
- /// <summary>
- /// 开奖号前缀名称
- /// </summary>
- public static string OpenCode = "KCOpenCode_";
- public static string base_lottery = OpenCode+"table_lottery";
- public static string base_lotteryList = OpenCode + "table_lotteryList";
- public static string qg_sd = OpenCode + "qg_sd";
- public static string qg_p3 = OpenCode + "qg_p3";
- public static string base_chart = OpenCode + "base_chart";
- public static string OpenCode_index = OpenCode + "index";
- public static string OpenCode_QGDetail = OpenCode + "QGDetail_";
- public static string OpenCode_DFDetail = OpenCode + "DFDetail_";
- public static string OpenCode_KjhHistory = OpenCode + "KjhHistory";
- public static string OpenCode_KjhHistoryGP = OpenCode + "KjhHistoryGP";
- public static string OpenCode_KSjh = OpenCode + "KSjh";
- public static string OpenCode_qgc = OpenCode + "qgc";
- public static string OpenCode_GetMenuLottery = OpenCode + "GetMenuLottery_";
-
- #endregion
- #region 资讯
- /// <summary>
- /// 资讯前缀名称
- /// </summary>
- public static string ZX = "KCZX_";
- public static string ZX_Menu = ZX + "Menu";
- public static string ZX_MenuModel = ZX + "Menu_";
- public static string ZX_Detail = ZX + "Detail_";
- public static string ZX_Home = ZX + "Home_";//用于首页
- #endregion
- #region 数据中心
- public static string SjZx = "SjzxFx";//数据中心分析彩种
- public static string SjZxYl = "SjzxFx-Yl";//数据中心分析彩种
- #endregion
- #region 开奖号首页
- public static string KjhToDay_Qg = "KjhToDay_Qg";//全国今日开奖数据
- #endregion
- }
- }
|