using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MECF.Framework.Common.CommonData.Prewet
{
    public class PrewetLotTrackData
    {
        public DateTime TimeStamp { get; set; }
        /// 
        /// 状态机
        /// 
        public string StateMachine { get; set; }
        /// 
        /// 压力
        /// 
        public double Pressure { get; set; }
        /// 
        /// 流量
        /// 
        public double Flow { get; set; }
        /// 
        /// Pump模式
        /// 
        public string PumpMode { get; set; }
        /// 
        /// 目标压力
        /// 
        public double PressureTarget { get; set; }
        /// 
        /// 当前Scan次数
        /// 
        public int CurrentScan { get; set; }
        /// 
        /// Scan是否开启
        /// 
        public bool ScanOn { get; set; }
        /// 
        /// 阀状态
        /// 
        public bool ValveState { get; set; }
        /// 
        /// pump速度
        /// 
        public double PumpSpeed { get; set; }
        /// 
        /// pump电流
        /// 
        public double PumpControlCurrent { get; set; }
        
    }
}