using SqlSugar; namespace NewPdaSqlServer.entity; /// /// [SugarTable("MES_QA_ITEMS_DETECT_DETAIL12")] public class MesQaItemsDetectDetail12 { /// /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid Guid { get; set; } /// /// 父亲Guid /// [SugarColumn(ColumnName = "parent_guid")] public Guid? ParentGuid { get; set; } /// /// 爷爷Guid /// [SugarColumn(ColumnName = "grandpa_guid")] public Guid? GrandpaGuid { get; set; } /// /// 检验结果 /// [SugarColumn(ColumnName = "fcheck_resu")] public string? FcheckResu { get; set; } /// /// 检验项目 /// [SugarColumn(ColumnName = "fcheck_item")] public string? FcheckItem { get; set; } /// /// 物料条码 /// [SugarColumn(ColumnName = "item_barcode")] public string? ItemBarcode { get; set; } /// /// [SugarColumn(ColumnName = "create_date")] public DateTime? CreateDate { get; set; } /// /// 判定标志 /// [SugarColumn(ColumnName = "fstand")] public string? Fstand { get; set; } /// /// 生成人 /// [SugarColumn(ColumnName = "lastupdate_by")] public string? LastupdateBy { get; set; } /// /// [SugarColumn(ColumnName = "create_by")] public string? CreateBy { get; set; } [SugarColumn(IsIgnore = true)] public int? count { get; set; } [SugarColumn(IsIgnore = true)] public bool? isNumber { get; set; } }