namespace ZR.Model.MES.qc
{
///
/// 初检实时记录表
///
[SugarTable("qc_firstinspection_record")]
public class QcFirstinspectionRecord
{
///
/// 流水号
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 工单id
///
[SugarColumn(ColumnName = "fk_workorder_id")]
public string FKWorkorderId { get; set; }
///
/// 检测项id
///
[SugarColumn(ColumnName = "fk_inpection_id")]
public string FKInpectionId { get; set; }
///
/// 模块
///
[SugarColumn(ColumnName = "InspectionModule")]
public string InspectionModule { get; set; }
///
/// 数值
///
[SugarColumn(ColumnName = "counter")]
public int? Counter { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}