using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IntelligentControlForsx.Service.HomeFormInfo.Domain
{
public enum Status
{
///
/// 运行
///
Run=1,
///
/// 待机
///
StandBy=2,
///
/// 维护
///
Maintain=3,
///
/// 故障
///
Falut=4,
///
/// 限电
///
Limit=5,
///
/// 离线
///
Offline=6
}
}