终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
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. }