using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class MachineStatisticsDto { /// /// 机种 /// public string ModuleType { get; set; } /// /// 产能 /// public int? Capacity { get; set; } /// /// 时间稼动率 /// public double? Availability { get; set; } /// /// 性能稼动率 /// public double? Performance { get; set; } /// /// 良率 /// public double? Quality { get; set; } /// /// 设备综合效率 /// public double? OEE { get; set; } } }