using System;
using System.Collections.Generic;
using System.Text;
namespace DllEapEntity.Dtos
{
public class OutputDto
{
public string Key { get; set; }
public string Code { get; set; }
public string Name { get; set; }
public string PCode { get; set; }
public string PName { get; set; }
///
/// 机台
///
public string MacCode { get; set; }
public string MacName { get; set; }
///
/// 机型
///
public string MacModel { get; set; }
public string MacModelName { get; set; }
///
/// 厂家
///
public string Supplier { get; set; }
///
/// 数量
///
public int Count { get; set; }
///
/// 时间间隔
///
public int? TimeLen { get; set; }
public int UPH { get; set; }
public int DetailId { get; set; }
public DateTime FDate { get; set; }
public string ProgramName { get; set; }
public string RegionName { get; set; }
public int? RegionId { get; set; }
///
/// 园区
///
public string Factory { get; set; }
///
/// 楼层
///
public string Floor { get; set; }
///
/// 线体
///
public string Line { get; set; }
public string Project { get; set; }
public string Work_Process { get; set; }
public string Dev_Type { get; set; }
public string Plant { get; set; }
}
public class OutputTree : OutputDto
{
public int Level { get; set; }
public bool Expand { get; set; } = false;
public IEnumerable Children { get; set; }
}
}