成品检验
This commit is contained in:
126
DOAN.Model/MES/Quality/IPQC/Dto/QcDefectCollectionDto.cs
Normal file
126
DOAN.Model/MES/Quality/IPQC/Dto/QcDefectCollectionDto.cs
Normal file
@@ -0,0 +1,126 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DOAN.Model.MES.quality.IPQC.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 缺陷收集查询对象
|
||||
/// </summary>
|
||||
public class QcDefectCollectionQueryDto : PagerInfo
|
||||
{
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
|
||||
public string LineCode { get; set; }
|
||||
|
||||
public int? Tqm { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 缺陷收集输入输出对象
|
||||
/// </summary>
|
||||
public class QcDefectCollectionDto
|
||||
{
|
||||
[Required(ErrorMessage = "id不能为空")] public string Id { get; set; }
|
||||
|
||||
public string LineCode { get; set; }
|
||||
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品编码
|
||||
/// </summary>
|
||||
|
||||
public string ProductCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
/// </summary>
|
||||
|
||||
public string ProductName { get; set; }
|
||||
|
||||
public string BatchNumber { get; set; }
|
||||
|
||||
public string Unit { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 供应商编码
|
||||
/// </summary>
|
||||
|
||||
public string SupplierCode { get; set; }
|
||||
|
||||
public string SupplierName { get; set; }
|
||||
|
||||
public decimal PlanNum { get; set; }
|
||||
|
||||
public decimal ActualNum { get; set; }
|
||||
|
||||
public decimal Quantity { get; set; }
|
||||
|
||||
public string ProcessName { get; set; }
|
||||
|
||||
public string Superintendent { get; set; }
|
||||
|
||||
public string DefectDescription { get; set; }
|
||||
|
||||
public int? Tqm { get; set; }
|
||||
public int? Type { 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; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 报损单
|
||||
/// </summary>
|
||||
public class QcDefectCollectionQueryDto2 : PagerInfo
|
||||
{
|
||||
public string MaterialCode { get; set; }
|
||||
|
||||
public string MaterialName { get; set; }
|
||||
|
||||
public DateTime? DateTime { get; set; }
|
||||
|
||||
|
||||
public string LineCode { get; set; }
|
||||
|
||||
//public int? Tqm { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public string SupplierCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 供应商名称
|
||||
/// </summary>
|
||||
public string SupplierName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品编码
|
||||
/// </summary>
|
||||
|
||||
public string ProductCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
/// </summary>
|
||||
|
||||
public string ProductName { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user