using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.Common.Cache
{
///
/// 全局字典缓存
///
public static class GlobalDictionaryCache
{
///
/// 楞型
///
public static Dictionary Flutes = new()
{
{ 1, "A" },
{ 2, "B" },
{ 3, "C" },
{ 5, "E" },
{ 6, "F" },
{ 7, "G" },
{ 12, "AB" },
{ 13, "AC" },
{ 23, "BC" },
{ 25, "BE" }
};
}
}