using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.quality.FQC { /// /// 成品缺陷 /// [SugarTable("qc_finishedproduct_defect_collection")] public class QcFinishedproductDefectCollection { /// /// 雪花 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 工单号 /// public string Workorder { get; set; } /// /// 缺陷描述 /// [SugarColumn(ColumnName = "defect_code")] public string DefectCode { get; set; } /// /// 数量 /// public int? Number { 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; } } }