using SqlSugar; namespace MES.Service.Modes; /// /// IQC检验 /// [SugarTable("MES_QA_ITEMS_DETECT_DETAIL12")] public class MesQaItemsDetectDetail12 { /// /// [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_QM_ID", IsPrimaryKey = true)] public decimal Id { 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 = "RELEASE_NO")] public string? ReleaseNo { get; set; } /// /// [SugarColumn(ColumnName = "MAIN_ID")] public decimal? MainId { get; set; } /// /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string? Company { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string? Factory { 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; } }