ReservoirItem.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. }
  54. }