From db5e488203b05d785baf1614b727afaf20a03fe6 Mon Sep 17 00:00:00 2001
From: xwt <2740516069@qq.com>
Date: 星期五, 19 十二月 2025 18:52:05 +0800
Subject: [PATCH] llj备注

---
 StandardInterface/MES.Service/service/QC/LljService.cs |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/StandardInterface/MES.Service/service/QC/LljService.cs b/StandardInterface/MES.Service/service/QC/LljService.cs
index 9c204f1..f91c540 100644
--- a/StandardInterface/MES.Service/service/QC/LljService.cs
+++ b/StandardInterface/MES.Service/service/QC/LljService.cs
@@ -1531,4 +1531,24 @@
         return match.Success ? int.Parse(match.Groups[1].Value) : 0;
     }
 
+
+    /// <summary>
+    /// 淇濆瓨澶囨敞鍒颁富琛�
+    /// </summary>
+    /// <param name="gid">涓昏〃ID</param>
+    /// <param name="releaseNo">妫�楠屽崟鍙�</param>
+    /// <param name="lotNo1">澶囨敞鍐呭</param>
+    /// <returns>褰卞搷琛屾暟</returns>
+    public int SaveLotNo1(decimal gid, string? releaseNo, string? lotNo1)
+    {
+        var db = SqlSugarHelper.GetInstance();
+        return db.Updateable<MesQaItemsDetect01>()
+            .SetColumns(it => new MesQaItemsDetect01
+            {
+                LotNo1 = lotNo1
+            })
+            .Where(it => it.Id == gid && it.ReleaseNo == releaseNo)
+            .ExecuteCommand();
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.9.3