一次合格品仓库,抛光操作记录,抛光仓库修改
This commit is contained in:
127
ZR.Model/MES/wms/Dto/WmGp12QualityStatisticsDto.cs
Normal file
127
ZR.Model/MES/wms/Dto/WmGp12QualityStatisticsDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
59
ZR.Model/MES/wms/Dto/WmOneTimeInventoryDto.cs
Normal file
59
ZR.Model/MES/wms/Dto/WmOneTimeInventoryDto.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 一次合格品仓库查询对象
|
||||
/// </summary>
|
||||
public class WmOneTimeInventoryQueryDto : PagerInfo {
|
||||
public string BlankNum { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 一次合格品仓库输入输出对象
|
||||
/// </summary>
|
||||
public class WmOneTimeInventoryDto
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public string BlankNum { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string WorkOrder { get; set; }
|
||||
|
||||
public string Color { get; set; }
|
||||
|
||||
public string Specification { get; set; }
|
||||
|
||||
public string Description { get; set; }
|
||||
|
||||
public int? Quantity { get; set; }
|
||||
|
||||
public int? MaxNum { get; set; }
|
||||
|
||||
public int? MinNum { get; set; }
|
||||
|
||||
public int? WarnNum { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
}
|
||||
}
|
||||
51
ZR.Model/MES/wms/Dto/WmOneTimeRecordDto.cs
Normal file
51
ZR.Model/MES/wms/Dto/WmOneTimeRecordDto.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 一次合格品仓库记录表查询对象
|
||||
/// </summary>
|
||||
public class WmOneTimeRecordQueryDto : PagerInfo {
|
||||
public string Id { get; set; }
|
||||
public string FkInventoryId { get; set; }
|
||||
public string Code { get; set; }
|
||||
public string BlankNum { get; set; }
|
||||
public string Partnumber { get; set; }
|
||||
public string Remark { get; set; }
|
||||
public int? ChangeType { get; set; }
|
||||
public DateTime? StartActionTime { get; set; }
|
||||
public DateTime? EndActionTime { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 一次合格品仓库记录表输入输出对象
|
||||
/// </summary>
|
||||
public class WmOneTimeRecordDto
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public string FkInventoryId { get; set; }
|
||||
|
||||
public string Code { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string BlankNum { get; set; }
|
||||
|
||||
public int? ChangeType { get; set; }
|
||||
|
||||
public int? ChangeQuantity { get; set; }
|
||||
|
||||
public DateTime? ActionTime { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -1,11 +1,9 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 工艺路线-抛光 库存表查询对象
|
||||
/// </summary>
|
||||
public class WmPolishInventoryQueryDto : PagerInfo
|
||||
public class WmPolishInventoryQueryDto : PagerInfo
|
||||
{
|
||||
public string BlankNum { get; set; }
|
||||
|
||||
@@ -16,7 +14,6 @@ namespace ZR.Model.MES.wms.Dto
|
||||
public int? Type { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -59,8 +56,5 @@ namespace ZR.Model.MES.wms.Dto
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
}
|
||||
}
|
||||
134
ZR.Model/MES/wms/Dto/WmPolishWorkQualityStatisticsDto.cs
Normal file
134
ZR.Model/MES/wms/Dto/WmPolishWorkQualityStatisticsDto.cs
Normal file
@@ -0,0 +1,134 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 抛光管理-抛光操作记录
|
||||
/// </summary>
|
||||
public class WmPolishWorkQualityStatisticsQueryDto : 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 WmPolishWorkQualityStatisticsDto
|
||||
{
|
||||
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? 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