using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections.Concurrent; namespace BPASmart.SmallBatchingSystem { public class DataModel { public ConcurrentDictionary OutletInformation { get; set; } = new ConcurrentDictionary(); } /// /// 料仓信息 /// public class SiloInformation { /// /// 料仓位置 /// public string SiloLoc { get; set; } = string.Empty; /// /// 料仓名称 /// public string SiloName { get; set; } = string.Empty; } /// /// 出料口信息 /// public class FeedMouth { public string FeedMouthLoc { get; set; } = string.Empty; public string FeedMouthName { get; set; } = string.Empty; public List SiloInformations { get; set; } = new List(); } }