This commit is contained in:
qianhao.xu
2024-12-10 14:57:07 +08:00
parent 2303bd4363
commit ccbf33c140
13 changed files with 386 additions and 452 deletions

View 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; }
}
}