using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 设备警告信息事件代码枚举 /// public enum EqWarnEventCodeEnum { /// /// 警告触发 /// Warning = 0, /// /// 警告已修复 /// WarnRepaired = 1 } /// /// 异常级别枚举 /// public enum ExceptionLevel { /// /// 警告 /// Warning = 0, /// /// 异常错误 /// Error = 1, /// /// 业务错误 /// BusinessError = 2 } /// /// 异常来源方向枚举 /// public enum ExceptionSource { /// /// WIP接收 /// WIPReceive = 0, /// /// WIP推送 /// WIPPost = 1 } /// /// 事件代码枚举 /// public enum EventCodeEnum { /// /// 上线入口 /// LineEntry = 0, /// /// 清洗入口 /// WashingEntry = 1, /// /// 清洗退出 /// WashingExit = 2, /// /// 加热入口 /// PreHeatingEntry = 3, PreHeatingExit = 4, ICBPEntry = 5, HeatingEntry = 6, HeatingExit = 7, QuenchingEntry = 8, QuenchingExitDate = 9, ICBPExitDate = 10, TemperingEntry = 11, TemperingExit = 12, LineExit = 13, CoolingEntry = 14, CoollingExit = 15, OtherUpdate = 20 } }