using System.ComponentModel; namespace SWRIS.Enums { public enum AlarmSourceType { /// /// 实时报警 /// [Description("实时报警")] RealTime = 1, /// /// 检测结果 /// [Description("检测结果")] Detection = 2 } }