zhuangpei-mesbackend/DOAN.Model/MES/quality/FAI/Dto/QcFirstarticleInspectionDto.cs
gcw_MV9p2JJN 4b5d7de701 1
2025-12-09 11:11:36 +08:00

66 lines
1.6 KiB
C#

using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.quality.FAI.Dto
{
/// <summary>
/// 首件检验查询对象
/// </summary>
public class QcFirstarticleInspectionQueryDto : PagerInfo
{
public string FkWorkorder { get; set; }
public string ProductCode { get; set; }
public string ParamterName { get; set; }
public int CheckResult { get; set; }
}
/// <summary>
/// 首件检验输入输出对象
/// </summary>
public class QcFirstarticleInspectionDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string FkWorkorder { get; set; }
public string FactoryCode { get; set; }
public string LineCode { get; set; }
public string MachineCode { get; set; }
public string ProductCode { get; set; }
public string Productname { get; set; }
public string SNnumber { get; set; }
public string ParamterName { get; set; }
public decimal StandardParamterValue { get; set; }
public decimal RealParamterValue { get; set; }
public decimal UpRangeLimit { get; set; }
public decimal LowRangeLimit { get; set; }
public string Unit { get; set; }
public int CheckResult { get; set; }
public DateTime? ParamTime { get; set; }
public string Createdby { get; set; }
public string Updatedby { get; set; }
public DateTime? CreatedTime { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}