92 lines
2.9 KiB
C#
92 lines
2.9 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace MyCode.Project.Infrastructure.Constant
|
||
{
|
||
public class CacheKey
|
||
{
|
||
/// <summary>
|
||
/// 队列名
|
||
/// </summary>
|
||
public static string LxmQueueCacheKey = "Queue:";
|
||
|
||
/// <summary>
|
||
/// 同步数据的队列
|
||
/// </summary>
|
||
public static string AnsyDataQueueCacheKey = "AnsyDataQueue:";
|
||
|
||
/// <summary>
|
||
/// 同步错误的时候需要暂停,就需要依赖这个KEY
|
||
/// </summary>
|
||
public static string AnsyDataErrorCacheKey = "AnsyDataError";
|
||
|
||
/// <summary>
|
||
/// 报表的ID
|
||
/// </summary>
|
||
public static string ReportZipFileCacheKey = "ReportZipFile:";
|
||
|
||
/// <summary>
|
||
/// 已经在导出ZIP文件
|
||
/// </summary>
|
||
public static string HasDownloadZipCacheKey = "HasDownloadZipCacheKey";
|
||
|
||
///// <summary>
|
||
///// 冰芙云店铺id列表
|
||
///// </summary>
|
||
//public static string BfyShopListByLoginIdKey = "BfyShopListByLoginIdKey";
|
||
|
||
///// <summary>
|
||
///// 冰芙云店铺id列表
|
||
///// </summary>
|
||
//public static string GetShopIdsByOrganizationId = "GetShopIdsByOrganizationId";
|
||
|
||
///// <summary>
|
||
///// 拿流行美卡数据的Key
|
||
///// </summary>
|
||
//public static string LxmOrderDataCacheKey = "lastupdate";
|
||
|
||
///// <summary>
|
||
///// 拿流行美卡数据的Key
|
||
///// </summary>
|
||
//public static string UpdateLxmOrderDataCacheKey = "UpdateLxmOrderData";
|
||
|
||
/// <summary>
|
||
/// 得到最后服务单时间
|
||
/// </summary>
|
||
public static string LastServiceOrderTimeCacheKey = "LastServiceOrderTime";
|
||
|
||
/// <summary>
|
||
/// 最后运算超过500时间
|
||
/// </summary>
|
||
public static string LxmLastCalMoreThan500TimeCacheKey = "MoreThan500Time";
|
||
|
||
///// <summary>
|
||
///// 流行美使用天数数据的缓存key
|
||
///// </summary>
|
||
//public static string LxmUseSysDaysCacheKey = "LxmUseSysDays";
|
||
|
||
///// <summary>
|
||
///// 宝典新会员销售计划缓存KEY
|
||
///// </summary>
|
||
//public static string BaoDianNewMemberPackageListCacheKey = "BaoDianNewMemberPackageList";
|
||
|
||
///// <summary>
|
||
///// 宝典老会员销售计划缓存KEY
|
||
///// </summary>
|
||
//public static string BaoDianOldMemberPackageListCacheKey = "BaoDianOldMemberPackageList";
|
||
|
||
///// <summary>
|
||
///// 宝典销售计划缓存KEY
|
||
///// </summary>
|
||
//public static string BaoDianSalasPackageListCacheKey = "BaoDianSalasPackageList";
|
||
|
||
///// <summary>
|
||
///// 得到最后销售套餐时间
|
||
///// </summary>
|
||
//public static string LastSalesServiceSetidBookTimeCacheKey = "LastSalesServiceSetidBookTime";
|
||
}
|
||
}
|