LineAccumulatedFaultDto.cs 641 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.FaultService.Dtos
  5. {
  6. public class LineAccumulatedFaultDto
  7. {
  8. /// <summary>
  9. /// 数据源 0:自动上抛 1:人工录入
  10. /// </summary>
  11. public int DataSource { get; set; } = 0;
  12. public string MachineType { get; set; } = string.Empty;
  13. public string FaultCode { get; set; } = string.Empty;
  14. public string FaultInfo { get; set; } = string.Empty;
  15. public int AccumulativeTotal { get; set; }
  16. public double AccumulativeTime { get; set; }
  17. }
  18. }