提交
This commit is contained in:
63
DOAN.Model/MES/Bigscreen/Dto/QualityBigScreenDto.cs
Normal file
63
DOAN.Model/MES/Bigscreen/Dto/QualityBigScreenDto.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
namespace DOAN.Model.MES.bigscreen.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 数字翻牌器
|
||||
/// </summary>
|
||||
public class QualityBigScreenDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 本周IQC
|
||||
/// </summary>
|
||||
public decimal WeekIQCquantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本月IQC
|
||||
/// </summary>
|
||||
public decimal MonthIQCquantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本周IPQC
|
||||
/// </summary>
|
||||
public decimal WeekIPQCquantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本月IPQC
|
||||
/// </summary>
|
||||
public decimal MonthIPQCquantity { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 本月FQC
|
||||
/// </summary>
|
||||
public decimal WeekFQCquantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本月FQC
|
||||
/// </summary>
|
||||
public decimal MonthFQCquantity { get; set; }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 缺陷list
|
||||
/// </summary>
|
||||
public class DefectBigScreenDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 产线
|
||||
/// </summary>
|
||||
public string LineCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 缺陷描述
|
||||
/// </summary>
|
||||
public string DefectDesciption { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 缺陷数量
|
||||
/// </summary>
|
||||
public decimal DefectQuantity { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user