CacheConstant.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 static class CacheConstant
  9. {
  10. #region 服务
  11. /// <summary>
  12. /// 服务全国彩名称
  13. /// </summary>
  14. public static string Service = "KCService_";
  15. public static string IpUser = "IpUser";
  16. #endregion
  17. #region 走势图
  18. public static string LotteryALL = "LotteryChart";//所有的数据 全国,地方,高频的前缀
  19. public static string Zst_Zst = "Zst_Zst";//走势图首页的前缀
  20. public static string Zst_Tool = "Zst_Tool";//工具首页的前缀
  21. public static string ZstOutInfo = "ZstOutInfo";//所有走势图输出前缀
  22. #endregion
  23. #region 开奖号
  24. /// <summary>
  25. /// 开奖号前缀名称
  26. /// </summary>
  27. public static string OpenCode = "KCOpenCode_";
  28. public static string base_lottery = OpenCode+"table_lottery";
  29. public static string base_lotteryList = OpenCode + "table_lotteryList";
  30. public static string qg_sd = OpenCode + "qg_sd";
  31. public static string qg_p3 = OpenCode + "qg_p3";
  32. public static string base_chart = OpenCode + "base_chart";
  33. public static string OpenCode_index = OpenCode + "index";
  34. public static string OpenCode_QGDetail = OpenCode + "QGDetail_";
  35. public static string OpenCode_DFDetail = OpenCode + "DFDetail_";
  36. public static string OpenCode_KjhHistory = OpenCode + "KjhHistory";
  37. public static string OpenCode_KjhHistoryGP = OpenCode + "KjhHistoryGP";
  38. public static string OpenCode_KSjh = OpenCode + "KSjh";
  39. public static string OpenCode_qgc = OpenCode + "qgc";
  40. public static string OpenCode_GetMenuLottery = OpenCode + "GetMenuLottery_";
  41. #endregion
  42. #region 资讯
  43. /// <summary>
  44. /// 资讯前缀名称
  45. /// </summary>
  46. public static string ZX = "KCZX_";
  47. public static string ZX_Menu = ZX + "Menu";
  48. public static string ZX_MenuModel = ZX + "Menu_";
  49. public static string ZX_Detail = ZX + "Detail_";
  50. public static string ZX_Home = ZX + "Home_";//用于首页
  51. #endregion
  52. #region 数据中心
  53. public static string SjZx = "SjzxFx";//数据中心分析彩种
  54. public static string SjZxYl = "SjzxFx-Yl";//数据中心分析彩种
  55. #endregion
  56. #region 开奖号首页
  57. public static string KjhToDay_Qg = "KjhToDay_Qg";//全国今日开奖数据
  58. #endregion
  59. }
  60. }