using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Text;
|
|
|
|
/// <summary>
|
|
///Keys 的摘要说明
|
|
/// </summary>
|
|
namespace Basic
|
|
{
|
|
public class Keys
|
|
{
|
|
//系统版本
|
|
/// <summary>
|
|
/// 版本号全称
|
|
/// </summary>
|
|
public const string ASSEMBLY_VERSION = "2.0.0";
|
|
//File======================================================
|
|
/// <summary>
|
|
/// 站点配置文件名
|
|
/// </summary>
|
|
public const string FILE_SITE_XML_CONFING = "Configpath";
|
|
|
|
/// <summary>
|
|
/// 站点配置
|
|
/// </summary>
|
|
public const string CACHE_SITE_CONFIG = "key_cache_site_config";
|
|
|
|
/// <summary>
|
|
/// 验证码
|
|
/// </summary>
|
|
public const string SESSION_CODE = "key_session_code";
|
|
/// <summary>
|
|
/// 后台管理员
|
|
/// </summary>
|
|
public const string SESSION_ADMIN_INFO = "key_session_admin_info";
|
|
|
|
/// <summary>
|
|
/// 客户端站点配置
|
|
/// </summary>
|
|
public const string CACHE_SITE_CONFIG_CLIENT = "qz_cache_site_client_config";
|
|
|
|
/// <summary>
|
|
/// 会员信息
|
|
/// </summary>
|
|
public const string SESSION_USER_INFO = "key_session_user_info";
|
|
|
|
}
|
|
}
|