using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_QuartzJob.DeviceBase; namespace WIDESEAWCS_Tasks { public enum QualityInspectionCommandEnum { /// /// 启动质检 /// StartqualityInspection, /// /// 停止质检 /// StopqualityInspection, /// /// 故障复位 /// FaultReset, /// /// 备用 /// Spare, /// /// 质检执行中 /// R_QualityInspection , /// /// 左超宽警告 /// R_LeftOverWidthWarning, /// /// 右超宽警告 /// R_RightWideWarning, /// /// 超高警告 /// R_ExtremeWarning, /// /// 质检通过 /// R_QualityInspectionInProgress, /// /// 有货 /// R_StockAvailableSymbol, /// /// 备用 /// R_Spare, } }