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

59 lines
1.7 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.ProductionPreparation
{
/// <summary>
/// 质量控制从表(存储具体检查参数明细)
/// </summary>
[SugarTable("quality_control_detail")]
public class QualityControlDetail
{
/// <summary>
/// 从表主键ID自增
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 关联主表质控编码quality_control.qc_code
/// </summary>
[SugarColumn(ColumnName = "qc_code")]
public string QcCode { get; set; }
/// <summary>
/// 检查参数名称(如:环境温度、设备运行状态)
/// </summary>
[SugarColumn(ColumnName = "param_name")]
public string ParamName { get; set; }
/// <summary>
/// 参数值23℃、正常
/// </summary>
[SugarColumn(ColumnName = "param_value")]
public string ParamValue { get; set; }
/// <summary>
/// 参数单位(如:℃/%/MPa无单位则留空
/// </summary>
[SugarColumn(ColumnName = "param_unit")]
public string ParamUnit { get; set; }
/// <summary>
/// 该参数是否合格0=不合格1=合格)
/// </summary>
[SugarColumn(ColumnName = "is_pass")]
public string IsPass { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(ColumnName = "created_by")]
public string CreatedBy { get; set; }
}
}