namespace ZR.Model.MES.qc { /// /// 初检瑕疵 /// [SugarTable("qc_firstinspection_default")] public class QcFirstinspectionDefault { /// /// 流水号 /// [SugarColumn(ColumnName = "id")] public string Id { get; set; } /// /// 产品名称 /// [SugarColumn(ColumnName = "productName")] public string ProductName { get; set; } /// /// fk_检测项 /// [SugarColumn(ColumnName = "fk_inspectionItem_id")] public string FkInspectionitemId { get; set; } /// /// fk_FQC_id /// [SugarColumn(ColumnName = "fk_FQC_id")] public string FkFqcId { get; set; } /// /// 数量 /// [SugarColumn(ColumnName = "number")] public string Number { 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; } } }