From 4f88a7d41fea9435c859e256c906a8daeed9953f Mon Sep 17 00:00:00 2001
From: wbc <2597324127@qq.com>
Date: 星期六, 15 三月 2025 16:37:15 +0800
Subject: [PATCH] 首件巡检优化更改

---
 MESApplication/Controllers/QC/SJController.cs |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/MESApplication/Controllers/QC/SJController.cs b/MESApplication/Controllers/QC/SJController.cs
index 107d6b9..3862406 100644
--- a/MESApplication/Controllers/QC/SJController.cs
+++ b/MESApplication/Controllers/QC/SJController.cs
@@ -63,11 +63,12 @@
     public ResponseResult SetQSItems([FromBody] JObject data)
     {
         var itemNo = data["itemNo"].ToString();
+        var lineNo = data["lineNo"].ToString();
         try
         {
             dynamic resultInfos = new ExpandoObject();
             var tbBillList = new SJService();
-            var detail021 = tbBillList.SetQSItems(itemNo);
+            var detail021 = tbBillList.SetQSItems(itemNo,lineNo);
             resultInfos.tbBillList = detail021;
             return new ResponseResult
             {

--
Gitblit v1.9.3