一次合格品仓库,抛光操作记录,抛光仓库修改
This commit is contained in:
136
ZR.Model/MES/wms/Dto/WmPolishQualityStatisticsDto.cs
Normal file
136
ZR.Model/MES/wms/Dto/WmPolishQualityStatisticsDto.cs
Normal file
@@ -0,0 +1,136 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
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 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;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user