namespace WIDESEA_Cache;
/// 
/// Redis常量
/// 
public class CacheConst
{
    /// 
    /// Redis Key前缀(可删除)
    /// 
    public const string Cache_Prefix_Web = "WIDESEA_WMSServerWeb:";
    /// 
    /// Redis Key前缀(需要持久化,不随系统重启删除)
    /// 
    public const string Cache_Prefix = "WIDESEA_WMSServer:";
    /// 
    /// Redis Hash类型
    /// 
    public const string Cache_Hash = "Hash";
    /// 
    /// 系统配置表缓存Key
    /// 
    public const string Cache_DevConfig = Cache_Prefix_Web + "DevConfig:";
    /// 
    /// 登录验证码缓存Key
    /// 
    public const string Cache_Captcha = Cache_Prefix_Web + "Captcha:";
    /// 
    /// 用户表缓存Key
    /// 
    public const string Cache_SysUser = Cache_Prefix_Web + "SysUser";
    /// 
    /// 用户手机号关系缓存Key
    /// 
    public const string Cache_SysUserPhone = Cache_Prefix_Web + "SysUserPhone";
    /// 
    /// 用户Token缓存Key
    /// 
    public const string Cache_UserToken = Cache_Prefix + "UserToken";
    /// 
    /// WMS库存缓存Key
    /// Cache_AutoModel
    public const string Cache_DtStockInfo = Cache_Prefix + "DtStockInfo";
}