1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- namespace Aitex.Core.RT.Simulator
- {
- [Serializable]
- public static class ExceptionCase
- {
- ///<summary>
- ///
- /// 系统相关
- ///
- ///
- /// </summary>
- //
- [Display(Description = "Maintenance", GroupName = "System")]
- public static bool ExMaintenance{ get; set; }
- [Display(Description = " MaintenanceDoorOpen", GroupName = "System")]
- public static bool ExMaintenanceDoorOpen{ get; set; }
- [Display(Description = "DI_RobotFork1WaferOn", GroupName = "System")]
- public static bool ExRobotFork1WaferOn{ get; set; }
- [Display(Description = "DI_RobotFork2WaferOn", GroupName = "System")]
- public static bool ExRobotFork2WaferOn{ get; set; }
- [Display(Description = "DI_PreAlignerWaferOn", GroupName = "System")]
- public static bool ExPreAlignerWaferOn{ get; set; }
- [Display(Description = "DI_RobotReady", GroupName = "System")]
- public static bool ExRobotReady{ get; set; }
- [Display(Description = "DI_PreAlignerReady", GroupName = "System")]
- public static bool ExPreAlignerReady{ get; set; }
- [Display(Description = "DI_RobotError", GroupName = "System")]
- public static bool ExRobotError{ get; set; }
- [Display(Description = "DI_PreAlignerError", GroupName = "System")]
- public static bool ExPreAlignerError{ get; set; }
- [Display(Description = "DI_TeachingPendantInUse", GroupName = "System")]
- public static bool ExTeachingPendantInUse{ get; set; }
- [Display(Description = "DI_Loadport1OperationalStatus", GroupName = "System")]
- public static bool ExLoadport1OperationalStatus{ get; set; }
- [Display(Description = "DI_Loadport2OperationalStatus", GroupName = "System")]
- public static bool ExLoadport2OperationalStatus{ get; set; }
- [Display(Description = "DI_IonizorError", GroupName = "System")]
- public static bool ExIonizorError{ get; set; }
- [Display(Description = "DI_FFUError", GroupName = "System")]
- public static bool ExFFUError{ get; set; }
- [Display(Description = "DI_MainAirErrorForRobot", GroupName = "System")]
- public static bool ExMainAirErrorForRobot{ get; set; }
- [Display(Description = "DI_MainAirErrorForLoadport", GroupName = "System")]
- public static bool ExMainAirErrorForLoadport{ get; set; }
- [Display(Description = "DI_VaccumError", GroupName = "System")]
- public static bool ExVaccumError{ get; set; }
-
-
- }
- }
|