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
    {
        /// 
        /// Reservoir ID
        /// 
        public int ReservoirID { get; set; }
        /// 
        /// 类型
        /// 
        public string Type { get; set; } = "Reservior";
        /// 
        /// Metal 数量
        /// 
        public int Size { get; set; }
        /// 
        /// Temperature Controller ID
        /// 
        public string TCID { get; set; }
        /// 
        /// PH Probe通道数
        /// 
        public int PHProbeChannelNumber { get; set; }
        /// 
        /// 化学液
        /// 
        public string PlannedInitialChemistry { get; set; }
        /// 
        /// Metal集合
        /// 
        public List 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; }
        /// 
        /// pump类型
        /// 
        public string PumpType { get; set; }
    }
}