32 lines
676 B
C#
32 lines
676 B
C#
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" }
|
|
};
|
|
}
|
|
}
|