49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
|
||
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; }
|
||
}
|
||
} |