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.
39 lines
722 B
C#
39 lines
722 B
C#
namespace Sln.Iot.Model.api.CoreCommunications.Heartbeat.@enum
|
|
{
|
|
/// <summary>
|
|
/// 设备状态枚举
|
|
/// </summary>
|
|
public enum EquipmentState
|
|
{
|
|
/// <summary>
|
|
/// 运行状态
|
|
/// </summary>
|
|
Running,
|
|
|
|
/// <summary>
|
|
/// 空闲状态
|
|
/// </summary>
|
|
Idle,
|
|
|
|
/// <summary>
|
|
/// 设置状态
|
|
/// </summary>
|
|
Setup,
|
|
|
|
/// <summary>
|
|
/// 维护状态
|
|
/// </summary>
|
|
Maintenance,
|
|
|
|
/// <summary>
|
|
/// 故障状态
|
|
/// </summary>
|
|
Faulted,
|
|
|
|
/// <summary>
|
|
/// 关机状态
|
|
/// </summary>
|
|
PoweredOff
|
|
}
|
|
|
|
} |