|
- 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<string, string> OutletInformation { get; set; } = new ConcurrentDictionary<string, string>();
- }
-
- /// <summary>
- /// 料仓信息
- /// </summary>
- public class SiloInformation
- {
- /// <summary>
- /// 料仓位置
- /// </summary>
- public string SiloLoc { get; set; } = string.Empty;
-
- /// <summary>
- /// 料仓名称
- /// </summary>
- public string SiloName { get; set; } = string.Empty;
- }
-
- /// <summary>
- /// 出料口信息
- /// </summary>
-
- public class FeedMouth
- {
- public string FeedMouthLoc { get; set; } = string.Empty;
-
- public string FeedMouthName { get; set; } = string.Empty;
-
- public List<SiloInformation> SiloInformations { get; set; } = new List<SiloInformation>();
- }
-
- }
|