ExceptionCase.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Aitex.Core.RT.Simulator
  8. {
  9. [Serializable]
  10. public static class ExceptionCase
  11. {
  12. ///<summary>
  13. ///
  14. /// 系统相关
  15. ///
  16. ///
  17. /// </summary>
  18. //
  19. [Display(Description = "Maintenance", GroupName = "System")]
  20. public static bool ExMaintenance{ get; set; }
  21. [Display(Description = " MaintenanceDoorOpen", GroupName = "System")]
  22. public static bool ExMaintenanceDoorOpen{ get; set; }
  23. [Display(Description = "DI_RobotFork1WaferOn", GroupName = "System")]
  24. public static bool ExRobotFork1WaferOn{ get; set; }
  25. [Display(Description = "DI_RobotFork2WaferOn", GroupName = "System")]
  26. public static bool ExRobotFork2WaferOn{ get; set; }
  27. [Display(Description = "DI_PreAlignerWaferOn", GroupName = "System")]
  28. public static bool ExPreAlignerWaferOn{ get; set; }
  29. [Display(Description = "DI_RobotReady", GroupName = "System")]
  30. public static bool ExRobotReady{ get; set; }
  31. [Display(Description = "DI_PreAlignerReady", GroupName = "System")]
  32. public static bool ExPreAlignerReady{ get; set; }
  33. [Display(Description = "DI_RobotError", GroupName = "System")]
  34. public static bool ExRobotError{ get; set; }
  35. [Display(Description = "DI_PreAlignerError", GroupName = "System")]
  36. public static bool ExPreAlignerError{ get; set; }
  37. [Display(Description = "DI_TeachingPendantInUse", GroupName = "System")]
  38. public static bool ExTeachingPendantInUse{ get; set; }
  39. [Display(Description = "DI_Loadport1OperationalStatus", GroupName = "System")]
  40. public static bool ExLoadport1OperationalStatus{ get; set; }
  41. [Display(Description = "DI_Loadport2OperationalStatus", GroupName = "System")]
  42. public static bool ExLoadport2OperationalStatus{ get; set; }
  43. [Display(Description = "DI_IonizorError", GroupName = "System")]
  44. public static bool ExIonizorError{ get; set; }
  45. [Display(Description = "DI_FFUError", GroupName = "System")]
  46. public static bool ExFFUError{ get; set; }
  47. [Display(Description = "DI_MainAirErrorForRobot", GroupName = "System")]
  48. public static bool ExMainAirErrorForRobot{ get; set; }
  49. [Display(Description = "DI_MainAirErrorForLoadport", GroupName = "System")]
  50. public static bool ExMainAirErrorForLoadport{ get; set; }
  51. [Display(Description = "DI_VaccumError", GroupName = "System")]
  52. public static bool ExVaccumError{ get; set; }
  53. }
  54. }