This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
namespace PVDEMCS.Services.Models
{
/// <summary>
/// 设备状态总览
/// </summary>
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; }
}