using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CCDCount.MODEL.PlcModel { public class PlcAlarmModelClass { /// /// 气压压力检测开关报警 /// /// public bool PressSwitch { get; set; } /// /// 读取急停开关按下报警 /// /// public bool E_Stop { get; set; } /// /// 读取触发上限位报警 /// /// public bool MachineUpLimit { get; set; } /// /// 读取触发下限位报警 /// /// public bool MachineDownLimit { get; set; } /// /// 读取升降变频器报警 /// /// public bool MachineInverterError { get; set; } /// /// 读取传送带变频器报警 /// /// public bool BeltsInverterError { get; set; } /// /// 等待复位 /// public bool WaitingForReset { get; set; } /// /// 读取门开报警 /// /// public bool DoorOpenAlarm { get; set; } /// /// 罐装伺服报警 /// public bool FillingValveMotorl { get; set; } /// /// 缺料停机 /// public bool MaterialShortageShutdown { get; set; } /// /// 传动轴伺服报警 /// public bool InBottleScrewMotorlError { get; set; } /// /// 堵瓶信号 /// public bool BottleJamSignal { get; set; } /// /// 缺瓶信号 /// public bool MissingBottleSignal { get; set; } /// /// 心跳报警 /// public bool PLCCameraHeartErrorSignal { get; set; } /// /// 视觉未启动报警 /// public bool CameraNotRunSignal { get; set; } /// /// 颗粒缓存超限报警 /// public bool ParticleCacheOverflowSignal { get; set; } /// /// /// public bool PLCConnecting { get; set; } } }