namespace PVDEMCS.Services.Models
{
///
/// 设备状态总览
///
public class EquipmentStateView
{
///
/// 设备类型:ALL(所有),Ionbond,Balzers,Cemecon
///
public string EquipmentType { get; set; }
///
/// 运行数量
///
public int Run { get; set; }
///
/// 待机数量
///
public int Stop { get; set; }
///
/// 报警数量
///
public int Alarm { get; set; }
}
}