AlarmSourceType.cs 363 B

123456789101112131415161718
  1. using System.ComponentModel;
  2. namespace SWRIS.Enums
  3. {
  4. public enum AlarmSourceType
  5. {
  6. /// <summary>
  7. /// 实时报警
  8. /// </summary>
  9. [Description("实时报警")]
  10. RealTime = 1,
  11. /// <summary>
  12. /// 检测结果
  13. /// </summary>
  14. [Description("检测结果")]
  15. Detection = 2
  16. }
  17. }