namespace DOAN.Model.MES.bigscreen.Dto
{
///
/// 数字翻牌器
///
public class QualityBigScreenDto
{
///
/// 本周IQC
///
public decimal WeekIQCquantity { get; set; }
///
/// 本月IQC
///
public decimal MonthIQCquantity { get; set; }
///
/// 本周IPQC
///
public decimal WeekIPQCquantity { get; set; }
///
/// 本月IPQC
///
public decimal MonthIPQCquantity { get; set; }
///
/// 本月FQC
///
public decimal WeekFQCquantity { get; set; }
///
/// 本月FQC
///
public decimal MonthFQCquantity { get; set; }
}
///
/// 缺陷list
///
public class DefectBigScreenDto
{
///
/// 产线
///
public string LineCode { get; set; }
///
/// 缺陷描述
///
public string DefectDesciption { get; set; }
///
/// 缺陷数量
///
public decimal DefectQuantity { get; set; }
}
}