From 04c86459ab6b656ea7d121e924d8d28ca96ac117 Mon Sep 17 00:00:00 2001
From: zyf <1071160500@qq.com>
Date: 星期四, 20 三月 2025 18:34:54 +0800
Subject: [PATCH] 人员表bug修复

---
 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