generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
673 B
C#
34 lines
673 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Business.Entity
|
|
{
|
|
/// <summary>
|
|
/// Fault > Error > Warning
|
|
/// </summary>
|
|
public enum AlarmDegardeEnum
|
|
{
|
|
/// <summary>
|
|
/// 致命错误
|
|
/// </summary>
|
|
[Description("致命错误")]
|
|
Fault = 3,
|
|
|
|
/// <summary>
|
|
/// 一般错误
|
|
/// </summary>
|
|
[Description("一般错误")]
|
|
Error = 2,
|
|
|
|
/// <summary>
|
|
/// 警告
|
|
/// </summary>
|
|
[Description("警告")]
|
|
Warning = 1
|
|
}
|
|
}
|