MetalLotTrackData.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.CommonData.Metal
  7. {
  8. public class MetalLotTrackData
  9. {
  10. public DateTime TimeStamp { get; set; }
  11. public double ANLevel { get; set; }
  12. public double CAPumpSpeed { get; set; }
  13. public int StepNum { get; set; }
  14. public int DurationRef { get; set; }
  15. public int DurationAdj { get; set; }
  16. public double RunTimeRef { get; set; }
  17. public double RunTimeAdj { get; set; }
  18. public double RunTime { get; set; }
  19. public double CurrentSPRef { get; set; }
  20. public double CurrentSP { get; set; }
  21. public double NegCurrentSPRef { get; set; }
  22. public double NegCurrentSP { get; set; }
  23. public double PosCurrentA { get; set; }
  24. public double PosCurrentB { get; set; }
  25. public double NegCurrentA { get; set; }
  26. public double NegCurrentB { get; set; }
  27. public string PowerSupplyA { get; set; }
  28. public string PowerSupplyB { get; set; }
  29. public double PosVoltageA { get; set; }
  30. public double PosVoltageB { get; set; }
  31. public double NegVoltageA { get; set; }
  32. public double NegVoltageB { get; set; }
  33. public double Flow { get; set; }
  34. public double CALevel { get; set; }
  35. public double Temperature { get; set; }
  36. public double ShearPlateSpeed { get; set; }
  37. public double CDA_1_Pressure { get; set; }
  38. public double CDA_2_Pressure { get; set; }
  39. public bool ClampCycleEngaged { get;set; }
  40. }
  41. }