using ProductionLineMonitor.Core.Models; using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class MachineDto : Machine { /// /// 小时产能 /// public List OutPutPerHours { get; set; } = new List(); /// /// 故障记录 /// public List FaultRecords { get; set; } = new List(); /// /// 统计 /// public List Statistics { get; set; } = new List(); /// /// 故障TOP5 /// public List Top5FaultRecords { get; set; } = new List(); } }