using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.FaultService.Dtos { public class LineAccumulatedFaultDto { /// /// 数据源 0:自动上抛 1:人工录入 /// public int DataSource { get; set; } = 0; public string MachineType { get; set; } = string.Empty; public string FaultCode { get; set; } = string.Empty; public string FaultInfo { get; set; } = string.Empty; public int AccumulativeTotal { get; set; } public double AccumulativeTime { get; set; } } }