12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.FaultService.Dtos
- {
- public class LineAccumulatedFaultDto
- {
- /// <summary>
- /// 数据源 0:自动上抛 1:人工录入
- /// </summary>
- 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; }
- }
- }
|