StateMachineName.cs 591 B

1234567891011121314
  1. namespace SHJX.Service.Control.Common.Constants
  2. {
  3. public class StateMachineName
  4. {
  5. public const string MOTOR_LOCK = "MotorLock";
  6. public const string TITRATION_LOCK = "TitrationLock";
  7. public const string MOTOR_LOCKDROPPER = "MotorLockDropper";
  8. public const string SODIUMOXALATE_LOCK = "SodiumOxalateLock";
  9. public const string POTASSIUM1PERMANGANATE_LOCK = "Potassium1PermanganateLock";
  10. public const string POTASSIUM2PERMANGANATE_LOCK = "Potassium2PermanganateLock";
  11. public static bool Sodiumoxate_Lock_First = true;
  12. }
  13. }