终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

45 rader
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Collections.Concurrent;
  7. namespace BPASmart.SmallBatchingSystem
  8. {
  9. public class DataModel
  10. {
  11. public ConcurrentDictionary<string, string> OutletInformation { get; set; } = new ConcurrentDictionary<string, string>();
  12. }
  13. /// <summary>
  14. /// 料仓信息
  15. /// </summary>
  16. public class SiloInformation
  17. {
  18. /// <summary>
  19. /// 料仓位置
  20. /// </summary>
  21. public string SiloLoc { get; set; } = string.Empty;
  22. /// <summary>
  23. /// 料仓名称
  24. /// </summary>
  25. public string SiloName { get; set; } = string.Empty;
  26. }
  27. /// <summary>
  28. /// 出料口信息
  29. /// </summary>
  30. public class FeedMouth
  31. {
  32. public string FeedMouthLoc { get; set; } = string.Empty;
  33. public string FeedMouthName { get; set; } = string.Empty;
  34. public List<SiloInformation> SiloInformations { get; set; } = new List<SiloInformation>();
  35. }
  36. }