StateData.cs 663 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Triton160.Common
  6. {
  7. public enum StateData
  8. {
  9. IsAutoMode,
  10. RecipeProcessTime,
  11. RecipeStepNo,
  12. RecipeName,
  13. RecipeBaseName,
  14. RecipeStepTimeElapsed,
  15. RecipeStepTimeSetPoint,
  16. RecipeStepRfTimeSetPoint,
  17. RfTimeElapsed,
  18. PumpTime,
  19. PMState,
  20. IsPumpingOkForProcess,
  21. IsGasFlowingOkForProcess,
  22. IsRfPowering,
  23. TotalCycle,
  24. ProcessStatus,
  25. AlarmEvent,
  26. LeakCheckElapseTime,
  27. DataLogName,
  28. LotName,
  29. }
  30. }