You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1013 B
C#

2 years ago
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
{
/// <summary>
/// 物料信息
/// </summary>
public static List<BaseMaterialinfo> MateriaList = new List<BaseMaterialinfo>();
/// <summary>
/// 库区信息
/// </summary>
public static List<BaseArea> BaseAreaList = new List<BaseArea>();
/// <summary>
/// 站台信息
/// </summary>
public static List<BaseSitenode> SiteNodeList = new List<BaseSitenode>();
/// <summary>
/// 小车信息
/// </summary>
public static List<BaseCar> CarList = new List<BaseCar>();
/// <summary>
/// 点位信息
/// </summary>
public static List<NodeSetting> NodeSettingList = new List<NodeSetting>();
}
}