using System;
using System.Collections.Generic;
using System.Text;
namespace DllEapEntity
{
public class OutputAnalysis
{
public int Id { get; set; }
///
/// 机台编号
///
public string MacCode { get; set; }
///
/// 产品编号
///
public string ProductCode { get; set; }
///
/// 产量
///
public int Output { get; set; }
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
}
public class OeeEntity
{
public string MacCode { get; set; }
public string ProductCode { get; set; }
public string PCode { get; set; }
public string PName { get; set; }
public string MacModelCode { get; set; }
public string MacModelName { get; set; }
public decimal TimeEffi { get; set; }
public decimal PerformanceEffi { get; set; }
public decimal Oee { get; set; }
public int Output { get; set; }
public int FGoods { get; set; }
public int Rejects { get; set; }
public int Losts { get; set; }
///
/// 运行时间
///
public decimal RunTime { get; set; }
///
/// 停止事件
///
public decimal StopTime { get; set; }
///
/// 负荷时间
///
public decimal LoadTime { get; set; }
}
}