namespace DOAN.Model.Business { /// /// 终检结果详情 /// [SugarTable("qc_final_inspection_result")] public class QcFinalInspectionResult { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工单 /// public string Workorder { get; set; } /// /// 方向(左,右) /// public string Direction { get; set; } /// /// 合格数 /// [SugarColumn(ColumnName = "qualified_quantity")] public int? QualifiedQuantity { get; set; } /// /// 不合格数 /// [SugarColumn(ColumnName = "unqualified_quantiy")] public int? UnqualifiedQuantiy { get; set; } /// /// CreatedBy /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// CreatedTime /// [SugarColumn(ColumnName = "created_time")] public DateTime? CreatedTime { get; set; } /// /// UpdatedBy /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } /// /// UpdatedTime /// [SugarColumn(ColumnName = "updated_time")] public DateTime? UpdatedTime { get; set; } } }