ProductionLineDto.cs 719 B

1234567891011121314151617181920212223
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Dtos
  6. {
  7. public class ProductionLineDto : ProductionLine
  8. {
  9. /// <summary>
  10. /// 机台列表
  11. /// </summary>
  12. public List<MachineDto> Machines { get; set; } = new List<MachineDto>();
  13. /// <summary>
  14. /// 统计
  15. /// </summary>
  16. public List<MachineStatisticsDto> Statistics { get; set; } = new List<MachineStatisticsDto>();
  17. /// <summary>
  18. /// 故障Top5
  19. /// </summary>
  20. public List<MachineFaultRecordDto> Top5FaultRecords { get; set; } = new List<MachineFaultRecordDto>();
  21. }
  22. }