140 lines
3.3 KiB
C#
140 lines
3.3 KiB
C#
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 抛光管理-质量统计查询对象
|
|
/// </summary>
|
|
public class WmPolishQualityStatisticsQueryDto : PagerInfo
|
|
{
|
|
|
|
public string WorkorderId { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string Team { get; set; }
|
|
|
|
public int Type { get; set; } = -1;
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 抛光管理-质量统计输入输出对象
|
|
/// </summary>
|
|
public class WmPolishQualityStatisticsDto
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string WorkorderId { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string Color { get; set; }
|
|
|
|
public string Specification { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public int? RequireNumber { get; set; }
|
|
|
|
public string Team { get; set; }
|
|
|
|
public int? QualifiedNumber { get; set; }
|
|
|
|
public string QualifiedRateStr { get; set; }
|
|
public decimal QualifiedRate { get; set; }
|
|
|
|
public int? PaoguangTotal { get; set; }
|
|
|
|
public int? DamoTotal { get; set; }
|
|
|
|
public int? BaofeiTotal { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
public int? Type { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public int? PaintSuokong { get; set; }
|
|
|
|
public int? PaintZhengkong { get; set; }
|
|
|
|
public int? PaintShiguang { get; set; }
|
|
|
|
public int? PaintSecha { get; set; }
|
|
|
|
public int? PaintDianzi { get; set; }
|
|
|
|
public int? PaintOther { get; set; }
|
|
|
|
public int? DeviceShuiban { get; set; }
|
|
|
|
public int? DeviceZandian { get; set; }
|
|
|
|
public int? DeviceBianxing { get; set; }
|
|
|
|
public int? DeviceYouzhu { get; set; }
|
|
|
|
public int? DeviceTuoluo { get; set; }
|
|
|
|
public int? DeviceZhuangshang { get; set; }
|
|
|
|
public int? DeviceOther { get; set; }
|
|
|
|
public int? BlankMaoci { get; set; }
|
|
|
|
public int? BlankSuoyin { get; set; }
|
|
|
|
public int? BlankCanshuang { get; set; }
|
|
|
|
public int? BlankShaying { get; set; }
|
|
|
|
public int? BlankZangdian { get; set; }
|
|
|
|
public int? BlankDamo { get; set; }
|
|
|
|
public int? ProgramLiuguang { get; set; }
|
|
|
|
public int? ProgramSeqiqueqi { get; set; }
|
|
|
|
public int? ProgramQingqiqueqi { get; set; }
|
|
|
|
public int? ProgramJupi { get; set; }
|
|
|
|
public int? ProgramOther { get; set; }
|
|
|
|
public int? TeamTuoluocanshuang { get; set; }
|
|
|
|
public int? TeamQingqiqikuai { get; set; }
|
|
|
|
public int? TeamSeqiqikuai { get; set; }
|
|
|
|
public int? TeamFahua { get; set; }
|
|
|
|
public int? TeamLiangbang { get; set; }
|
|
|
|
public int? TeamPenglou { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
// 是否是返工件
|
|
public bool IsReturnWorkpiece { get; set; } = false;
|
|
/// <summary>
|
|
/// 是否跳过GP12计算抛光合格数
|
|
/// </summary>
|
|
public bool IsOver { get; set; } = false;
|
|
|
|
}
|
|
} |