using System;
namespace CncModels.Dto.Dashboard
{
///
/// 仪表盘总览数据
///
public class DashboardSummaryResponse
{
/// 在线机床数量
public int OnlineCount { get; set; }
/// 总机床数量
public int TotalMachines { get; set; }
/// 今日产量(件)
public int TodayProduction { get; set; }
/// 活跃告警数量
public int ActiveAlerts { get; set; }
/// 采集成功率(百分比,小数不放大)
public decimal CollectSuccessRate { get; set; }
/// 正在运行的机床数量
public int RunningMachines { get; set; }
/// 数据缺失机床数量
public int DataMissingMachines { get; set; }
}
}