2025-11-29 14:58:50 +08:00

49 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RIZO.Model.Mes.Dto.ProductionPreparation
{
/// <summary>
/// 质量控制主表查询对象
/// </summary>
public class QualityControlQueryDto : PagerInfo
{
}
/// <summary>
/// 质量控制主表输入输出对象
/// </summary>
public class QualityControlDto
{
[Required(ErrorMessage = "主表主键ID自增不能为空")]
public long Id { get; set; }
[Required(ErrorMessage = "质控编码唯一标识格式QC+日期+序号如QC20251201001不能为空")]
public string QcCode { get; set; }
public string CheckType { get; set; }
public string CheckDate { get; set; }
public string LineCode { get; set; }
public string WorkOrderNo { get; set; }
public int? CheckResult { get; set; }
public DateTime? CheckTime { get; set; }
public string Remark { get; set; }
public DateTime? CreatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string UpdatedBy { get; set; }
[ExcelColumn(Name = "质控类型")]
public string CheckTypeLabel { get; set; }
}
}