From 411ebc3c0a2b457bc5eb61443c549b6142a60ff6 Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期六, 19 四月 2025 08:16:13 +0800
Subject: [PATCH] 1.采购入库取消检验结果校验 2.新增ipqc查询

---
 service/QC/LljService.cs |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/service/QC/LljService.cs b/service/QC/LljService.cs
index 4d08f59..4838160 100644
--- a/service/QC/LljService.cs
+++ b/service/QC/LljService.cs
@@ -737,12 +737,13 @@
         return withOracle;
     }
 
-    //鍒犻櫎鐗瑰緛鍊� 
-    public List<MesFile> updateRemarks(LLJDto dto)
+    //鏇存柊涓嶅悎鏍兼弿杩�
+    public int updateRemarks(LLJDto dto)
     {
-        var withOracle = Db.Queryable<MesFile>()
-                .Where(s => s.ParentGuid.ToString() == dto.gid)
-                .ToList();
+        var withOracle = Db.Updateable<MesQaItemsDetect01>()
+                .SetColumns(s => s.Remarks == dto.Remarks)
+                .Where(s => s.Guid.ToString() == dto.gid)
+                .ExecuteCommand();
 
         return withOracle;
     }

--
Gitblit v1.9.3