using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EnumType { public enum ETranAlarm { 无故障 = 0, 运行超时报警 = 1, 输送变频器报警 = 2, 马达保护器报警 = 3, 急停报警 = 4, 左超宽 = 5, 右超宽 = 6, 超高 = 7, 超重 = 8 } }