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 LxmQueueCacheKey = "Queue:";
///
/// 同步数据的队列
///
public static string AnsyDataQueueCacheKey = "AnsyDataQueue:";
///
/// 同步错误的时候需要暂停,就需要依赖这个KEY
///
public static string AnsyDataErrorCacheKey = "AnsyDataError";
///
/// 报表的ID
///
public static string ReportZipFileCacheKey = "ReportZipFile:";
///
/// 已经在导出ZIP文件
///
public static string HasDownloadZipCacheKey = "HasDownloadZipCacheKey";
///
/// 冰芙云店铺id列表
///
public static string BfyShopListByLoginIdKey = "BfyShopListByLoginIdKey";
///
/// 冰芙云店铺id列表
///
public static string GetShopIdsByOrganizationId = "GetShopIdsByOrganizationId";
///
/// 拿流行美卡数据的Key
///
public static string LxmOrderDataCacheKey = "lastupdate";
///
/// 拿流行美卡数据的Key
///
public static string UpdateLxmOrderDataCacheKey = "UpdateLxmOrderData";
///
/// 得到最后服务单时间
///
public static string LastServiceOrderTimeCacheKey = "LastServiceOrderTime";
///
/// 最后运算超过500时间
///
public static string LxmLastCalMoreThan500TimeCacheKey = "MoreThan500Time";
///
/// 流行美使用天数数据的缓存key
///
public static string LxmUseSysDaysCacheKey = "LxmUseSysDays";
///
/// 宝典新会员销售计划缓存KEY
///
public static string BaoDianNewMemberPackageListCacheKey = "BaoDianNewMemberPackageList";
///
/// 宝典老会员销售计划缓存KEY
///
public static string BaoDianOldMemberPackageListCacheKey = "BaoDianOldMemberPackageList";
///
/// 宝典销售计划缓存KEY
///
public static string BaoDianSalasPackageListCacheKey = "BaoDianSalasPackageList";
///
/// 得到最后销售套餐时间
///
public static string LastSalesServiceSetidBookTimeCacheKey = "LastSalesServiceSetidBookTime";
}
}