ReservoirItem.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.ToolLayout
  7. {
  8. public class ReservoirItem : LayoutModuleItem
  9. {
  10. /// <summary>
  11. /// Reservoir ID
  12. /// </summary>
  13. public int ReservoirID { get; set; }
  14. /// <summary>
  15. /// 类型
  16. /// </summary>
  17. public string Type { get; set; } = "Reservior";
  18. /// <summary>
  19. /// Metal 数量
  20. /// </summary>
  21. public int Size { get; set; }
  22. /// <summary>
  23. /// Temperature Controller ID
  24. /// </summary>
  25. public string TCID { get; set; }
  26. /// <summary>
  27. /// PH Probe通道数
  28. /// </summary>
  29. public int PHProbeChannelNumber { get; set; }
  30. /// <summary>
  31. /// 化学液
  32. /// </summary>
  33. public string PlannedInitialChemistry { get; set; }
  34. /// <summary>
  35. /// Metal集合
  36. /// </summary>
  37. public List<MetalItem> MetalCells { get; set; }
  38. public int CellPosition { get; set; }
  39. public int PositionInMilliMeters { get; set; }
  40. public int LengthInMilliMeters { get; set; }
  41. public bool ChemicalReplenishmentEnable { get; set; }
  42. public string DIReplenType { get; set; }
  43. public string ANDIReplenType { get; set; }
  44. public string PHProbeType { get; set; }
  45. public string CrossDoseType { get; set; }
  46. public string ChemReplenType { get; set; }
  47. public int ChemReplenPumps { get; set; }
  48. public bool AutoDrainsInstalled { get; set; }
  49. public string SlipstreamType { get; set; }
  50. public string CMMType { get; set; }
  51. public string CMMSupplyID { get; set; }
  52. public string EvaporatorType { get; set; }
  53. /// <summary>
  54. /// pump类型
  55. /// </summary>
  56. public string PumpType { get; set; }
  57. }
  58. }