| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.CommonData.Metal{    public class MetalLotTrackData    {        public DateTime TimeStamp { get; set; }        public double ANLevel { get; set; }        public double CAPumpSpeed { get; set; }        public int StepNum { get; set; }        public int DurationRef { get; set; }        public int DurationAdj { get; set; }        public double RunTimeRef { get; set; }        public double RunTimeAdj { get; set; }        public double RunTime { get; set; }        public double CurrentSPRef { get; set; }        public double CurrentSP { get; set; }        public double NegCurrentSPRef { get; set; }        public double NegCurrentSP { get; set; }        public double PosCurrentA { get; set; }                public double PosCurrentB { get; set; }        public double NegCurrentA { get; set; }        public double NegCurrentB { get; set; }        public string PowerSupplyA { get; set; }        public string PowerSupplyB { get; set; }        public double PosVoltageA { get; set; }        public double PosVoltageB { get; set; }        public double NegVoltageA { get; set; }        public double NegVoltageB { get; set; }        public double Flow { get; set; }        public double CALevel { get; set; }        public double Temperature { get; set; }        public double ShearPlateSpeed { get; set; }        public double CDA_1_Pressure { get; set; }        public double CDA_2_Pressure { get; set; }        public bool ClampCycleEngaged { get;set; }    }}
 |