2024-02-02 17:14:41 +08:00
|
|
|
|
namespace MesETL.App.Cache;
|
2024-01-29 09:29:16 +08:00
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
public static class CacheKeys
|
|
|
|
|
{
|
|
|
|
|
public static Func<string, string> Order_OrderNo_CompanyID { get; set; }
|
|
|
|
|
public static Func<string, string> OrderBlockPlan_ID_CompanyID { get; set; }
|
|
|
|
|
public static Func<string, string> OrderProcess_ID_ShardKey { get; set; }
|
|
|
|
|
}
|