LoaderFlowLotTrackData.cs 851 B

12345678910111213141516171819202122232425
  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.Loader
  7. {
  8. public class LoaderFlowLotTrackData
  9. {
  10. public DateTime TimeStamp { get; set; }
  11. public string Time { get; set; }
  12. public bool LoaderWHClamped { get; set; }
  13. public bool LoaderACRSVacuum { get; set; }
  14. public double LoaderACRSVacuumAnlg { get; set; }
  15. public bool LoaderBCRSVacuum { get; set; }
  16. public double LoaderBCRSVacuumAnlg { get; set; }
  17. public bool EnableVacuum { get; set; }
  18. public bool EnableFlowClamp { get; set; }
  19. public bool FlowClamp { get;set; }
  20. public bool FlowVacuum { get; set; }
  21. public double FlowValue { get; set; }
  22. }
  23. }