using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace WIDESEA_Common
{
///
/// 连接设备状态
///
public enum ConnectedEquipmentState
{
///
/// 未连接
///
[Description("未连接")]
NotConnected,
///
/// 未激活
///
[Description("未激活")]
OFFLine,
///
/// 空闲
///
[Description("空闲")]
Idle,
///
/// 运行
///
[Description("运行")]
Running,
///
/// 报警
///
[Description("报警")]
Warning,
///
/// 手动
///
[Description("手动")]
Manual,
[Description("关闭")]
OFF,
}
}