using Khd.Core.Domain.Dto.wcs; using Khd.Core.Domain.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Khd.Core.Wcs.Global { public static class StaticData { /// /// 物料信息 /// public static List MateriaList = new List(); /// /// 库区信息 /// public static List BaseAreaList = new List(); /// /// 站台信息 /// public static List SiteNodeList = new List(); /// /// 小车信息 /// public static List CarList = new List(); /// /// 点位信息 /// public static List NodeSettingList = new List(); } }