MES-ETL/ConsoleApp2/Cache/CacheKeys.cs
2024-02-01 10:04:00 +08:00

9 lines
320 B
C#

namespace ConsoleApp2.Cache;
#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; }
}