1234567891011121314151617181920212223 |
- using ProductionLineMonitor.Core.Models;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Core.Dtos
- {
- public class ProductionLineDto : ProductionLine
- {
- /// <summary>
- /// 机台列表
- /// </summary>
- public List<MachineDto> Machines { get; set; } = new List<MachineDto>();
- /// <summary>
- /// 统计
- /// </summary>
- public List<MachineStatisticsDto> Statistics { get; set; } = new List<MachineStatisticsDto>();
- /// <summary>
- /// 故障Top5
- /// </summary>
- public List<MachineFaultRecordDto> Top5FaultRecords { get; set; } = new List<MachineFaultRecordDto>();
- }
- }
|