2025-07-04 09:50:02 +08:00
|
|
|
|
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";
|
|
|
|
|
|
|
2025-09-04 15:34:57 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 冰芙云店铺id列表
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
//public static string BfyShopListByLoginIdKey = "BfyShopListByLoginIdKey";
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
2025-09-04 15:34:57 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 冰芙云店铺id列表
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
//public static string GetShopIdsByOrganizationId = "GetShopIdsByOrganizationId";
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
2025-09-04 15:34:57 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 拿流行美卡数据的Key
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
//public static string LxmOrderDataCacheKey = "lastupdate";
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
2025-09-04 15:34:57 +08:00
|
|
|
|
///// <summary>
|
|
|
|
|
|
///// 拿流行美卡数据的Key
|
|
|
|
|
|
///// </summary>
|
|
|
|
|
|
//public static string UpdateLxmOrderDataCacheKey = "UpdateLxmOrderData";
|
2025-07-04 09:50:02 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 得到最后服务单时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static string LastServiceOrderTimeCacheKey = "LastServiceOrderTime";
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最后运算超过500时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static string LxmLastCalMoreThan500TimeCacheKey = "MoreThan500Time";
|
|
|
|
|
|
|
2025-09-04 15:34:57 +08:00
|
|
|
|
///// <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";
|
2025-07-04 09:50:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|