using MyCode.Project.Infrastructure.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Constant { public class CacheKey { public static string CacheJsTicketKey = "CacheJsTicketKey"; /// /// 手机验证码缓存 /// public static string CacheVerCode = "MOBILE_VER:"; /// /// 带参数推广二维码 /// public static string QrCodeScene = "QrCodeScene:"; /// /// 装修内容缓存KEY /// public static string DecorateCacheKey = "ZhiTaMallDecorate"; /// /// 微信的AccessToken /// public static string WechatAccessTokenAndTicketCacheKey = "WechatAccessTokenAndTicket:"; /// /// 企业微信获取token /// public static string EnterpriseWechatTokenKey = "EnterpriseWechatToken:"; /// /// 冰芙云的消息队列key /// public static string QueueCacheKey = "BFYDecorate"; /// /// 冰芙云的WebSocket消息队列key /// public static string WebSocketQueueCacheKey = "WebSocket:"; /// /// 冰芙云的WebSocket消息队列当前用户的聊天窗口对象key /// public static string WebSocketMemberIdKey = "WebSocketMemberId:"; /// /// 冰芙云的WebSocket获取userid列表key /// public static string WebSocketGetUserIdKey = "WebSocketGetUserId:"; /// /// 冰芙云的WebSocket会员进店消息队列key /// public static string WebSocketMemberQueueCacheKey = "WebSocketForMemberJoinStore:"; /// /// 门店使用APP数据的消息队列KEY /// public static string RpShopUseAppletDataKey = "RpShopUseAppletData:"; /// /// 门店使用APP数据的消息队列KEY /// public static string RpShopUseAppletDataKey2 = "RpShopUseAppletData2:"; /// /// 门店使用年报月报的消息队列KEY /// public static string RpHuLiHuShao = "RpHuLiHuShao:"; } }