using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Iot.Business.Entity { /// /// Fault > Error > Warning /// public enum AlarmDegardeEnum { /// /// 致命错误 /// [Description("致命错误")] Fault = 3, /// /// 一般错误 /// [Description("一般错误")] Error = 2, /// /// 警告 /// [Description("警告")] Warning = 1 } }