| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.ToolLayout{    public class ReservoirItem : LayoutModuleItem    {        /// <summary>        /// Reservoir ID        /// </summary>        public int ReservoirID { get; set; }        /// <summary>        /// 类型        /// </summary>        public string Type { get; set; } = "Reservior";        /// <summary>        /// Metal 数量        /// </summary>        public int Size { get; set; }        /// <summary>        /// Temperature Controller ID        /// </summary>        public string TCID { get; set; }        /// <summary>        /// PH Probe通道数        /// </summary>        public int PHProbeChannelNumber { get; set; }        /// <summary>        /// 化学液        /// </summary>        public string PlannedInitialChemistry { get; set; }        /// <summary>        /// Metal集合        /// </summary>        public List<MetalItem> MetalCells { get; set; }        public int CellPosition { get; set; }        public int PositionInMilliMeters { get; set; }        public int LengthInMilliMeters { get; set; }        public bool ChemicalReplenishmentEnable { get; set; }        public string DIReplenType { get; set; }        public string ANDIReplenType { get; set; }        public string PHProbeType { get; set; }        public string CrossDoseType { get; set; }        public string ChemReplenType { get; set; }        public int ChemReplenPumps { get; set; }        public bool AutoDrainsInstalled { get; set; }        public string SlipstreamType { get; set; }        public string CMMType { get; set; }        public string CMMSupplyID { get; set; }        public string EvaporatorType { get; set; }        /// <summary>        /// pump类型        /// </summary>        public string PumpType { get; set; }    }}
 |