2025-11-29 15:08:51 +08:00

40 lines
1.3 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 QualityControlDetailQueryDto : PagerInfo
{
}
/// <summary>
/// 质量控制从表(存储具体检查参数明细)输入输出对象
/// </summary>
public class QualityControlDetailDto
{
[Required(ErrorMessage = "从表主键ID自增不能为空")]
public long Id { get; set; }
[Required(ErrorMessage = "关联主表质控编码quality_control.qc_code不能为空")]
public string QcCode { get; set; }
[Required(ErrorMessage = "检查参数名称(如:环境温度、设备运行状态)不能为空")]
public string ParamName { get; set; }
public string ParamValue { get; set; }
public string ParamUnit { get; set; }
[Required(ErrorMessage = "该参数是否合格0=不合格1=合格)不能为空")]
public string IsPass { get; set; }
public DateTime? CreatedTime { get; set; }
public string CreatedBy { get; set; }
[ExcelColumn(Name = "该参数是否合格0=不合格1=合格)")]
public string IsPassLabel { get; set; }
}
}