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.

48 lines
960 B
C#

namespace Sln.Iot.Model.api.Common.Fault
{
/// <summary>
/// 故障原因枚举
/// </summary>
public enum FaultCause
{
/// <summary>
/// 机械故障
/// </summary>
MechanicalFailure,
/// <summary>
/// 电气故障
/// </summary>
ElectricalFailure,
/// <summary>
/// 软件故障
/// </summary>
SoftwareError,
/// <summary>
/// 通信故障
/// </summary>
CommunicationError,
/// <summary>
/// 传感器故障
/// </summary>
SensorFailure,
/// <summary>
/// 电源故障
/// </summary>
PowerFailure,
/// <summary>
/// 过热
/// </summary>
Overheating,
/// <summary>
/// 物料问题
/// </summary>
MaterialIssue
}
}