一次合格品仓库,抛光操作记录,抛光仓库修改

This commit is contained in:
2024-08-08 17:14:03 +08:00
parent 52f1ae30f3
commit 8b9205cea3
33 changed files with 3419 additions and 9 deletions

View File

@@ -0,0 +1,127 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// GP12质检记录表查询对象
/// </summary>
public class WmGp12QualityStatisticsQueryDto : 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>
/// GP12质检记录表输入输出对象
/// </summary>
public class WmGp12QualityStatisticsDto
{
[Required(ErrorMessage = "id不能为空")]
public string Id { get; set; }
public string WorkorderId { get; set; }
public string Partnumber { get; set; }
public int? RequireNumber { get; set; }
public string Team { get; set; }
public int? QualifiedNumber { 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 bool IsReturnWorkpiece { 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; }
}
}