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