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