using CP.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CP.Business
{
#region 枚举类型
///
/// 缓存前缀
///
public enum CachePrefix
{
///
/// 系统
///
system,
///
/// 用户
///
user,
///
/// 论坛
///
forum,
///
/// 福彩3D
///
fcsd,
///
/// 体彩P3
///
tcp3,
///
/// 体彩P5
///
tcp5,
///
/// 福彩双色球
///
fcssq,
///
/// 体彩大乐透
///
tcdlt,
///
/// 福彩七乐彩
///
fcqlc,
///
/// 体彩七星彩
///
tcqxc,
///
/// 福彩东方6+1
///
fcdf61,
///
/// 广东好彩1
///
fcgdhc1,
///
/// 福彩华东15x5
///
fchd15x5,
///
/// 广东11选5
///
fcgd11x5,
///
/// 江苏7位数
///
tcjs7ws,
///
/// 体彩浙江6+1
///
tczj61,
///
/// 体彩浙江20选5
///
tczj20x5,
///
/// 体彩福建31选7
///
tcfj31x7,
///
/// 体彩福建36选7
///
tcfj36x7,
///
/// 体彩福建22选5
///
tcfj22x5,
///
/// 体彩黑龙江
///
tchlj61,
///
/// 福彩河南22选5
///
fchn22x5,
///
/// 福彩湖北22选5
///
fchb22x5,
///
/// 福彩湖北30选5
///
fchb30x5,
///
/// 福彩新疆35选7
///
fcxj35x7,
///
/// 福彩广东南粤36选7
///
fcny36x7,
///
/// 福彩黑龙江P62
///
fchljp62,
///
/// 福彩广西快乐双彩
///
fcgxklsc,
///
/// 福彩新疆25选7
///
fcxj25x7,
///
/// 福彩湖北快3
///
fchbk3,
///
/// 体彩湖北11选5
///
tchb11x5,
///
/// 体彩山东11选5
///
tcsd11x5,
///
/// 福彩广西快3
///
fcgxk3,
///
/// 福彩广西快乐10分
///
fcgxklsf,
///
/// 专家号码
///
expert,
///
/// 资讯
///
news,
///
/// 号码评分
///
score,
///
/// 报号数据报名
///
DataIndex,
///
/// 所有最新一期开奖号
///
///
kjh,
///
/// 电视走势图缓存键
///
tv,
///
/// 广告
///
Advert,
}
///
/// 缓存时间
/// 单位:分钟
///
public enum CacheTime : int
{
///
/// 常量级缓存
///
Const = 24 * 60 * 3,
///
/// 系统级缓存
/// 900 min
///
System = 900,
///
/// 数据级缓存
/// 如原始数据
/// 700 min
///
Data = 700,
///
/// 遗漏的数据缓存
/// 600 min
///
MissData = 600,
///
/// 页面级缓存
/// 走势图/遗漏等的输出结果
/// 500 min
///
Page = 500,
///
/// 3D/P3评分系统缓存
/// 600 min
///
Score = 600,
///
/// 资讯类
///
News = 300,
///
/// 最短的时间
/// 60分钟
///
Mintime = 60,
///
/// 论坛
///
Forum = 60,
///
/// 开奖公告
///
Kjh = 30,
///
/// 用户收藏
///
UserCollect = 30,
///
/// 菜单的智能推荐
///
RandomMenu = 20,
///
/// 高频彩种
///
hf = 20,
///
/// 专家数据
/// 10分钟
///
Expert = 10,
///
/// 新闻
/// 30分钟
///
NewManager = 30
}
#endregion
public class CacheKeys
{
#region 系统Cache
///
/// 系统配置
///
public static string SYSTEM_CONFIG = $"{CachePrefix.system.ToString()}-data-config";
///
/// QQ联合登录配置数据
///
public static string SYSTEM_OAUTH_QQ = $"{CachePrefix.system.ToString()}-data-oauth-qq";
///
/// sina联合登录配置数据
///
public static string SYSTEM_OAUTH_SINA = $"{CachePrefix.system.ToString()}-data-oauth-sina";
///
/// 系统菜单
///
public static string SYSTEM_MENUS = $"{CachePrefix.system.ToString()}-data-menus";
///
/// 系统菜单
///
public static string SYSTEM_MENUS_HZ = $"{CachePrefix.system.ToString()}-menus-hz";
///
/// 智能-随机菜单推荐
///
public static string SYSTEM_MENUS_RANDOM = $"{CachePrefix.system.ToString()}-menus-random_menulist_{0}";
///
/// 移动站菜单
///
public static string SYSTEM_MOBILE_MENUS = $"{CachePrefix.system.ToString()}-menus-mobile";
///
/// 菜单对应关系
///
public static string SYSTEM_MENUS_GX = $"{CachePrefix.system.ToString()}-menus-gx";
///
/// 菜单点击排行
///
public static string SYSTEM_MENUSVIEWS = $"{CachePrefix.system.ToString()}-data-menus-views";
///
/// 彩种类型
///
public static string SYSTEM_CZCLASS = $"{CachePrefix.system.ToString()}-data-czclass";
///
/// 工具类型
///
public static string SYSTEM_TZCLASS = $"{CachePrefix.system.ToString()}-data-tzclass";
///
/// 计算期数:开奖日期和时间配置
///
public static string SYSTEM_PUBLIC_CZ_CONFIG = $"{CachePrefix.system.ToString()}-data-publicczconfig";
///
/// 计算期数:期数配置
///
public static string SYSTEM_QI_SHU_CONFIG = $"{CachePrefix.system.ToString()}-data-QiShuConfig";
///
/// 旧地址跳转数据
///
public static string SYSTEM_URL_REDIRECT = $"{CachePrefix.system.ToString()}-data-urlredirect";
///
/// 后台的开奖号查询地址配置
///
public static string SYSTEM_KJH_URL = $"{CachePrefix.system.ToString()}-data-kjhurl";
///
/// 手机站专家数据seo信息
///
public static string SYSTEM_MOBILE_DATA_SEO = $"{CachePrefix.system.ToString()}-data-mobile-zjdata-seo";
///
/// 名词解释
///
public static string SYSTEM_NOUNEXPLANATION = $"{CachePrefix.system.ToString()}-data-nounexplanation";
#endregion
#region 静态文件
public static string Static_File = "/data/staticfile";
#endregion
#region 资讯-帮助
///
/// 资讯分类
///
public static string NEWS_CLASSLIST = $"{CachePrefix.news.ToString()}-data-classlist";
///
///资讯主题分类数据
///
public static string NEWS_THEMELIST = $"{CachePrefix.news.ToString()}-data-themelist";
///
/// 前台资讯小列表
///
public static string NEWS_LIST = $"{CachePrefix.news.ToString()}-data-newslist";
///
/// 前台资讯翻页列表
///
public static string NEWS_PAGELIST = $"{CachePrefix.news.ToString()}-data-newspagelist-{0}";
#endregion
#region 福彩3D
///
/// 3D数据列表 只包括有开奖号的
///
public static string FCSD_DATALIST = $"{QGEnum.fcsd.ToString()}-data";
///
/// 3D数据列表
/// 可能包括最新一期的开机号-试机号数据.
///
public static string FCSD_DATALIST_ALL = $"{QGEnum.fcsd.ToString()}-data-all";
///
/// 3D遗漏结果数据
///
public static string FCSD_MISS_DATA = $"{QGEnum.fcsd.ToString()}-data-miss";
///
/// 福彩3D组选号码遗漏列表
///
public static string FCSD_ZXNUMMISS = $"{QGEnum.fcsd.ToString()}-data-miss-zxnum";
///
/// 福彩3d开奖公告数据..
///
public static string FCSD_KJH_DATA = $"{QGEnum.fcsd.ToString()}-data-kjh";
///
/// 试机号金码
///
public static string FCSD_SJHJM_DATA = $"{QGEnum.fcsd.ToString()}-data-kjh-sjhjm";
///
/// 牛胆
///
public static string FCSD_NIUDAN_DATA = $"{QGEnum.fcsd.ToString()}-data-kjh-niudan";
///
/// 福彩3d数据中心..
///
public static string FCSD_DC_DATA = $"{QGEnum.fcsd.ToString()}-data-dc";
#endregion
#region 体彩P3
///
/// P3数据 不包括未开奖的
///
public static string TCP3_DATALIST = $"{QGEnum.tcp3.ToString()}-data";
///
/// P3数据列表
/// 可能包括最新一期的开机号-试机号数据.
///
public static string TCP3_DATALIST_ALL = $"{QGEnum.tcp3.ToString()}-data-all";
///
/// 3D遗漏结果数据
///
public static string TCP3_MISS_DATA = $"{QGEnum.tcp3.ToString()}-data-miss";
///
/// 福彩3D组选号码遗漏列表
///
public static string TCP3_ZXNUMMISS = $"{QGEnum.tcp3.ToString()}-data-miss-zxnum";
///
/// P3开奖公告数据..
///
public static string TCP3_KJH_DATA = $"{QGEnum.tcp3.ToString()}-data-kjh";
///
///P3数据中心..
///
public static string TCP3_DC_DATA = $"{QGEnum.tcp3.ToString()}-data-dc";
///
/// P3遗漏结果数据..
///
public static string TCP3_MISS_DATA_HZ = $"{QGEnum.tcp3.ToString()}-data-miss-HZ-";
public static string TCP3_MISS_DATA_ZH = $"{QGEnum.tcp3.ToString()}-data-miss-ZH-";
public static string TCP3_MISS_DATA_SZ = $"{QGEnum.tcp3.ToString()}-data-miss-SZ-";
public static string TCP3_MISS_DATA_KD = $"{QGEnum.tcp3.ToString()}-data-miss-KD-";
public static string TCP3_MISS_DATA_012 = $"{QGEnum.tcp3.ToString()}-data-miss-012-";
public static string TCP3_MISS_DATA_HZHW = $"{QGEnum.tcp3.ToString()}-data-miss-HZHW-";
#endregion
#region 双色球
///
/// 福彩双色球数据列表
///
public static string FCSSQ_DATALIST = $"{QGEnum.fcssq.ToString()}-data";
///
/// 福彩双色球矩阵号码
///
public static string SYSTEM_FCSSQ_JZNUMBER = $"{QGEnum.fcssq.ToString()}-data-xzjz";
///
/// 福彩双色球遗漏结果数据..
///
public static string FCSSQ_MISS_DATA = $"{QGEnum.fcssq.ToString()}-data-miss-";
///
/// 福彩双色球开奖公告数据..
///
public static string FCSSQ_KJH_DATA = $"{QGEnum.fcssq.ToString()}-data-kjh";
#endregion
#region 大乐透
///
/// 体彩大乐透数据列表
///
public static string TCDLT_DATALIST = $"{QGEnum.tcdlt.ToString()}-data";
///
/// 体彩大乐透矩阵号码
///
public static string SYSTEM_TCDLT_JZNUMBER = $"{QGEnum.tcdlt.ToString()}-data-xzjz";
///
/// 体彩大乐透遗漏结果数据..
///
public static string TCDLT_MISS_DATA = $"{QGEnum.tcdlt.ToString()}-data-miss";
///
/// 体彩大乐透开奖公告数据..
///
public static string TCDLT_KJH_DATA = $"{QGEnum.tcdlt.ToString()}-data-kjh";
#endregion
#region 七乐彩
///
/// 福彩七乐彩数据列表
///
public static string FCQLC_DATALIST = $"{QGEnum.fcqlc.ToString()}-data";
///
/// 福彩七乐彩矩阵号码
///
public static string SYSTEM_FCQLC_JZNUMBER = $"{QGEnum.fcqlc.ToString()}-data-xzjz";
///
/// 福彩七乐彩遗漏结果数据..
///
public static string FCQLC_MISS_DATA = $"{QGEnum.fcqlc.ToString()}-data-miss";
///
/// 福彩七乐彩开奖公告数据..
///
public static string FCQLC_KJH_DATA = $"{QGEnum.fcqlc.ToString()}-data-kjh";
#endregion
#region 七星彩
///
/// 体彩七星彩数据列表
///
public static string TCQXC_DATALIST = $"{QGEnum.tcqxc.ToString()}-data";
///
/// 体彩七星彩遗漏结果数据..
///
public static string TCQXC_MISS_DATA = $"{QGEnum.tcqxc.ToString()}-data-miss";
///
/// 体彩七星彩开奖公告数据..
///
public static string TCQXC_KJH_DATA = $"{QGEnum.tcqxc.ToString()}-data-kjh";
#endregion
#region 东方6+1
///
/// 福彩东方6+1数据列表
///
public static string FCDF61_DATALIST = $"{DFEnum.fcdf61.ToString()}-data";
///
/// 福彩东方6+1开奖公告数据..
///
public static string FCDF61_KJH_DATA = $"{DFEnum.fcdf61.ToString()}-data-kjh";
#endregion
#region 广东好彩1
///
/// 广东好彩1
///
public static string DFGDHC1_DATALIST = $"{DFEnum.gdhc1.ToString()}-data";
///
/// 好彩1遗漏数据
///
public static string DFGDHC1_MISS_DATA = $"{DFEnum.gdhc1.ToString()}-data-miss";
///
/// 广东好彩1开奖公告数据
///
public static string DFGDHC1_KJH_DATA = $"{DFEnum.gdhc1.ToString()}-data-kjh";
#endregion
#region 华东15选5
///
/// 福彩华东15选5数据缓存
///
public static string FCHD15X5_DATALIST = $"{DFEnum.fchd15x5.ToString()}-data";
///
/// 福彩华东15选5开奖公告数据
///
public static string FCHD15X5_KJH_DATA = $"{DFEnum.fchd15x5.ToString()}-data-kjh";
#endregion
#region 广东11选5
///
/// 广东11x5的所有数据
///
public static string FCGD11X5_DATALIST = $"{GPEnum.tcgd11x5.ToString()}-data";
#endregion
#region 广西快3
///
/// 广西快3的所有数据
///
public static string Fcgxk3_DATALIST = $"{GPEnum.fcgxk3.ToString()}-data";
#endregion
#region 山东11x5
///
/// 山东11x5的所有数据
///
public static string Tcsd11x5_DATALIST = $"{GPEnum.tcsd11x5.ToString()}-data";
#endregion
#region 江苏7位数
///
/// 江苏7位数的所有数据
///
public static string TCJS7WS_DATALIST = $"{DFEnum.tcjs7ws.ToString()}-data";
///
/// 江苏7位数开奖公告数据..
///
public static string TCJS7WS_KJH_DATA = $"{DFEnum.tcjs7ws.ToString()}-data-kjh";
#endregion
#region 浙江6+1
///
/// 体彩浙江6+1的所有数据
///
public static string TCZJ61_DATALIST = $"{DFEnum.tczj61.ToString()}-data";
///
/// 浙江6+1开奖公告数据..
///
public static string TCZJ61_KJH_DATA = $"{DFEnum.tczj61.ToString()}-data-kjh";
#endregion
#region 福建31选7
///
/// 福建31选7的所有数据
///
public static string TCFJ31X7_DATALIST = $"{DFEnum.tcfj31x7.ToString()}-data";
///
/// 福建31选7开奖公告数据..
///
public static string TCFJ31X7_KJH_DATA = $"{DFEnum.tcfj31x7.ToString()}-data-kjh";
#endregion
#region 福建36选7
///
/// 福建36选7的所有数据
///
public static string TCFJ36X7_DATALIST = $"{DFEnum.tcfj36x7.ToString()}-data";
///
/// 福建36选7开奖公告数据..
///
public static string TCFJ36X7_KJH_DATA = $"{DFEnum.tcfj36x7.ToString()}-data-kjh";
#endregion
#region 河南22选5
///
/// 河南22选5的所有数据
///
public static string FCHN22X5_DATALIST = $"{DFEnum.fchn22x5.ToString()}-data";
///
/// 河南22选5开奖公告数据..
///
public static string FCHN22X5_KJH_DATA = $"{DFEnum.fchn22x5.ToString()}-data-kjh";
#endregion
#region 海南4+1
///
/// 海南4+1的所有数据
///
public static string TCHN41_DATALIST = $"{DFEnum.tchn41.ToString()}-data";
///
/// 海南4+1开奖公告数据..
///
public static string TCHN41_KJH_DATA = $"{DFEnum.tchn41.ToString()}-data-kjh";
#endregion
#region 黑龙江22选5
///
/// 黑龙江22选5的所有数据
///
public static string FCHLJ22X5_DATALIST = $"{DFEnum.fchlj22x5.ToString()}-data";
///
/// 河南22选5开奖公告数据..
///
public static string FCHLJ22X5_KJH_DATA = $"{DFEnum.fchlj22x5.ToString()}-data-kjh";
#endregion
#region 湖北22选5
///
/// 湖北22选5的所有数据
///
public static string FCHB22X5_DATALIST = $"{CachePrefix.fchb22x5.ToString()}-data";
///
/// 湖北22选5开奖公告数据..
///
public static string FCHB22X5_KJH_DATA = $"{CachePrefix.fchb22x5.ToString()}-data-kjh";
#endregion
#region 安徽25选5
///
/// 安徽25选5的所有数据
///
public static string FCAH25X5_DATALIST = $"{DFEnum.fcah25x5.ToString()}-data";
///
/// 安徽25选5开奖公告数据..
///
public static string FCAH25X5_KJH_DATA = $"{DFEnum.fcah25x5.ToString()}-data";
#endregion
#region 广东25选5
///
/// 湖北22选5的所有数据
///
public static string FCGD26X5_DATALIST = $"{CachePrefix.fchb22x5.ToString()}-data";
///
/// 湖北22选5开奖公告数据..
///
public static string FCGD26X5_KJH_DATA = $"{CachePrefix.fchb22x5.ToString()}-data-kjh";
#endregion
#region 新疆35x7
///
/// 新疆35x7的所有数据
///
public static string FCXJ35X7_DATALIST = $"{DFEnum.fcxj35x7.ToString()}-data";
///
/// 新疆35x7开奖公告数据..
///
public static string FCXJ35X7_KJH_DATA = $"{DFEnum.fcxj35x7.ToString()}-data-kjh";
#endregion
#region 深圳35x7
///
/// 南粤36x7的所有数据
///
public static string FCSZFC35X7_DATALIST = $"{DFEnum.fcny36x7.ToString()}-data";
///
/// 南粤36x7开奖公告数据..
///
public static string FCSZFC35X7_KJH_DATA = $"{DFEnum.fcny36x7.ToString()}-data-kjh";
#endregion
#region 辽宁35x7
///
/// 辽宁35x7的所有数据
///
public static string FCLN35X7_DATALIST = $"{DFEnum.fcln35x7.ToString()}-data";
///
/// 辽宁35x7开奖公告数据..
///
public static string FCLN35X7_KJH_DATA = $"{DFEnum.fcln35x7.ToString()}-data-kjh";
#endregion
#region 南粤36x7
///
/// 南粤36x7的所有数据
///
public static string FCNY36X7_DATALIST = $"{DFEnum.fcny36x7.ToString()}-data";
///
/// 南粤36x7开奖公告数据..
///
public static string FCNY36X7_KJH_DATA = $"{DFEnum.fcny36x7.ToString()}-data-kjh";
#endregion
#region 黑龙江36x7
///
/// 南粤36x7的所有数据
///
public static string FCHLJ36X7_DATALIST = $"{DFEnum.fcny36x7.ToString()}-data";
///
/// 南粤36x7开奖公告数据..
///
public static string FCHLJ36X7_KJH_DATA = $"{DFEnum.fcny36x7.ToString()}-data-kjh";
#endregion
#region 湖北30选5
///
/// 湖北22选5的所有数据
///
public static string Fchb30x5_DATALIST = $"{DFEnum.fchb30x5.ToString()}-data";
///
/// 湖北22选5开奖公告数据..
///
public static string Fchb30x5_KJH_DATA = $"{DFEnum.fchb30x5.ToString()}-data-kjh";
#endregion
#region 黑龙江6+1
///
/// 黑龙江6+1数据列表
///
public static string TCHLJ61_DATALIST = $"{DFEnum.tchlj61.ToString()}-data";
///
/// 黑龙江6+1开奖公告数据..
///
public static string TCHLJ61_KJH_DATA = $"{DFEnum.tchlj61.ToString()}-data-kjh";
#endregion
#region 黑龙江P62
///
/// 黑龙江P62数据列表
///
public static string FCHLJP62_DATALIST = $"{DFEnum.fchljp62.ToString()}-data";
///
/// 黑龙江P62开奖公告数据..
///
public static string FCHLJP62_KJH_DATA = $"{DFEnum.fchljp62.ToString()}-data-kjh";
#endregion
#region 浙江20选5
///
/// 浙江20选5数据列表
///
public static string TCZJ20X5_DATALIST = $"{DFEnum.tczj20x5.ToString()}-data";
///
/// 浙江20选5开奖公告数据..
///
public static string TCZJ20X5_KJH_DATA = $"{DFEnum.tczj20x5.ToString()}-data-kjh";
#endregion
#region 浙江20选5
///
/// 河北20选5数据列表
///
public static string Fchebei20X5_DATALIST = $"{DFEnum.fchebei20x5.ToString()}-data";
///
/// 河北20选5开奖公告数据..
///
public static string Fchebei20X5_KJH_DATA = $"{DFEnum.fchebei20x5.ToString()}-data-kjh";
#endregion
#region 福建22选5
///
/// 福建22选5数据列表
///
public static string TCFJ22X5_DATALIST = $"{DFEnum.tcfj22x5.ToString()}-data";
///
/// 福建22选5开奖公告数据..
///
public static string TCFJ22X5_KJH_DATA = $"{DFEnum.tcfj22x5.ToString()}-data-kjh";
#endregion
#region 广西快乐双彩
///
/// 广西快乐双彩数据列表
///
public static string FCGXKLSC_DATALIST = $"{DFEnum.fcgxklsc.ToString()}-data";
///
/// 广西快乐双彩开奖公告数据..
///
public static string FCGXKLSC_KJH_DATA = $"{DFEnum.fcgxklsc.ToString()}-data-kjh";
#endregion
#region 新疆25选7
///
/// 新疆25选7数据列表
///
public static string FCXJ25X7_DATALIST = $"{DFEnum.fcxj25x7.ToString()}-data";
///
/// 新疆25选7开奖公告数据..
///
public static string FCXJ25X7_KJH_DATA = $"{DFEnum.fcxj25x7.ToString()}-data-kjh";
#endregion
#region 新疆18选7
///
/// 新疆18选7数据列表
///
public static string FCXJ18X7_DATALIST = $"{DFEnum.fcxj18x7.ToString()}-data";
///
/// 新疆18选7开奖公告数据..
///
public static string FCXJ18X7_KJH_DATA = $"{DFEnum.fcxj18x7.ToString()}-data-kjh";
#endregion
#region 河北排列5
///
/// 河北排列5数据 不包括未开奖的
///
public static string FFCHEBEIPL5_DATALIST = $"{DFEnum.fchebeipl5.ToString()}-data";
#endregion
#region 河北排列7
///
/// 河北排列7数据 不包括未开奖的
///
public static string FCHEBEIPL7_DATALIST = $"{DFEnum.fchebeipl7.ToString()}-data";
#endregion
#region 河北好运彩2
///
/// 河北好运彩2数据 不包括未开奖的
///
public static string FCHEBEIHYC2_DATALIST = $"{DFEnum.fchebeihyc2.ToString()}-data";
#endregion
#region 河北好运彩3
///
/// 河北好运彩3数据 不包括未开奖的
///
public static string FCHEBEIHYC3_DATALIST = $"{DFEnum.fchebeihyc3.ToString()}-data";
#endregion
#region 上海天天彩选4
///
/// 上海天天彩选4数据 不包括未开奖的
///
public static string FCSHTTCX4_DATALIST = $"{DFEnum.fcshttc4.ToString()}-data";
#endregion
#region 香港彩
///
/// 香港彩数据 不包括未开奖的
///
public static string FCHK6_DATALIST = $"{DFEnum.hk6.ToString()}-data";
#endregion
#region 北京快中彩
///
/// 北京快中彩数据 不包括未开奖的
///
public static string TCBJKZC_DATALIST = $"{GPEnum.tcbjkzc.ToString()}-data";
#endregion
#region lg 走势图集list
///
/// 首页走势图集
///
public static string zsindex = "zsindex";
///
/// 所有走势图集
///
public static string zsalllist = "zsalllist-{0}";
///
/// 遗漏工具图表
///
public static string ylgjtb = "ylgjtb-{0}";
///
/// 走势三级页面
///
public static string zssj = "zssj-{0}";
///
/// 区域
///
public static string ares = "ares";
///
/// 区域
///
public static string ares_id = "ares_id-{0}";
///
/// 区域
///
public static string ares_name = "ares_name-{0}";
///
/// 区域
///
public static string ares_id_cz = "ares_id_cz-{0}";
///
/// Help
///
public static string Help = "Help";
///
/// Notice
///
public static string Notice = "Notice";
#endregion
#region 专题相关
public static string Zt_Column = "Zt_Column";
public static string Zt_Picture = "Zt_Picture";
public static string Zt_Page = "Zt_Page";
#endregion
#region czx 术语和技巧
///
/// 术语集合
///
public static string TermList = "TermList";
///
/// 技巧集合
///
public static string SkillsList = "SkillsList";
///
/// 技巧类型名称集合
///
public static string SkillsTypeNameList = "SkillsTypeNameList";
///
/// 技巧内容集合
///
public static string SkillsContenteList = "SkillsContenteList";
#endregion
#region 新闻
///
/// 新闻集合
///
public static string NewManagerListList = "NewManagerListList";
///
/// 公告
///
public static string NewList = "NewList";
#endregion
///
/// 彩种类型
///
public static string CzAll = $"CzAll";
///
/// 广告
///
public static string Advert = $"{CachePrefix.Advert.ToString()}-data-{0}";
}
}