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.
28 lines
564 B
C#
28 lines
564 B
C#
namespace Sln.Iot.Model.api.Common.Fault
|
|
{
|
|
/// <summary>
|
|
/// 故障严重程度枚举
|
|
/// </summary>
|
|
public enum FaultSeverity
|
|
{
|
|
/// <summary>
|
|
/// 信息级别
|
|
/// </summary>
|
|
Information = 0,
|
|
|
|
/// <summary>
|
|
/// 警告级别
|
|
/// </summary>
|
|
Warning = 1,
|
|
|
|
/// <summary>
|
|
/// 错误级别(须停机)
|
|
/// </summary>
|
|
Error = 2,
|
|
|
|
/// <summary>
|
|
/// 报警级别(须停机)
|
|
/// </summary>
|
|
Alarm = 3
|
|
}
|
|
} |