first commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
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" }
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user