Files
ww-jst/wmsjst/JSMachine.WMS.Common/Cache/GlobalDictionaryCache.cs
T

32 lines
676 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.Common.Cache
{
/// <summary>
/// 全局字典缓存
/// </summary>
public static class GlobalDictionaryCache
{
/// <summary>
/// 楞型
/// </summary>
public static Dictionary<int, string> Flutes = new()
{
{ 1, "A" },
{ 2, "B" },
{ 3, "C" },
{ 5, "E" },
{ 6, "F" },
{ 7, "G" },
{ 12, "AB" },
{ 13, "AC" },
{ 23, "BC" },
{ 25, "BE" }
};
}
}