From fba48d2d676cd9b6d493163aef9d87f6e5090aee Mon Sep 17 00:00:00 2001
From: 如洲 陈 <1278080563@qq.com>
Date: 星期五, 12 九月 2025 19:02:00 +0800
Subject: [PATCH] 出库检和退货检验

---
 MES.Service/Modes/MesOqcItemsDetectDetail12.cs |   89 ++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 89 insertions(+), 0 deletions(-)

diff --git a/MES.Service/Modes/MesOqcItemsDetectDetail12.cs b/MES.Service/Modes/MesOqcItemsDetectDetail12.cs
new file mode 100644
index 0000000..91e638d
--- /dev/null
+++ b/MES.Service/Modes/MesOqcItemsDetectDetail12.cs
@@ -0,0 +1,89 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using SqlSugar;
+
+namespace MES.Service.Modes
+{
+    /// <summary>
+    /// OQC妫�楠�
+    ///</summary>
+    [SugarTable("MES_OQC_ITEMS_DETECT_DETAIL12")]
+    public class MesOqcItemsDetectDetail12
+    {
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_QM_ID",
+            IsPrimaryKey = true)]
+        public decimal Id { get; set; }
+
+        /// <summary>
+        /// 妫�楠岀粨鏋� 
+        ///</summary>
+        [SugarColumn(ColumnName = "FCHECK_RESU")]
+        public string? FcheckResu { get; set; }
+
+        /// <summary>
+        /// 妫�楠岄」鐩� 
+        ///</summary>
+        [SugarColumn(ColumnName = "FCHECK_ITEM")]
+        public string? FcheckItem { get; set; }
+
+        /// <summary>
+        /// 鐗╂枡鏉$爜 
+        ///</summary>
+        [SugarColumn(ColumnName = "ITEM_BARCODE")]
+        public string? ItemBarcode { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "RELEASE_NO")]
+        public string? ReleaseNo { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "MAIN_ID")]
+        public decimal? MainId { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "CREATE_DATE")]
+        public DateTime? CreateDate { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "COMPANY")]
+        public string? Company { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "FACTORY")]
+        public string? Factory { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "FSTAND")]
+        public string? Fstand { get; set; }
+
+        /// <summary>
+        /// 鐢熸垚浜� 
+        ///</summary>
+        [SugarColumn(ColumnName = "LASTUPDATE_BY")]
+        public string? LastupdateBy { get; set; }
+
+        /// <summary>
+        ///  
+        ///</summary>
+        [SugarColumn(ColumnName = "CREATE_BY")]
+        public string? CreateBy { get; set; }
+        
+        [SugarColumn(IsIgnore = true)] public int? count { get; set; }
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3