From 770f02888443c1be46549f164abfd3be78a3dbd3 Mon Sep 17 00:00:00 2001
From: 南骏 池 <chiffly@163.com>
Date: 星期二, 25 十一月 2025 09:42:22 +0800
Subject: [PATCH] 1.标准版更新(20251125)

---
 Controllers/QC/IpqcController.cs |   25 +++++++++++++++++++++++--
 1 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/Controllers/QC/IpqcController.cs b/Controllers/QC/IpqcController.cs
index 5d5eb0d..c5b0088 100644
--- a/Controllers/QC/IpqcController.cs
+++ b/Controllers/QC/IpqcController.cs
@@ -10,7 +10,7 @@
 
 [Route("api/[controller]")]
 [ApiController]
-public class IpqcController : ControllerBase
+public class IpqcController : BaseController
 {
     IpqcService m = new IpqcService();
 
@@ -80,7 +80,7 @@
         try
         {
             dynamic resultInfos = new ExpandoObject();
-            var (item, totalCount) = m.getPageXj(queryObj);
+            var (item, totalCount) = m.getPageXj(queryObj, RequestInfo);
             var tbBillList =
                 resultInfos.tbBillList = item;
             return new ResponseResult
@@ -349,4 +349,25 @@
         }
     }
 
+    [HttpPost("selIpqcItemsByGw")]
+    public ResponseResult SelIpqcItemsByGw([FromBody] dynamic query)
+    {
+        try
+        {
+            dynamic resultInfos = new ExpandoObject();
+            resultInfos.tbBillList = m.SelIpqcItemsByGw(query);
+            return new ResponseResult
+            {
+                status = 0,
+                message = "OK",
+                data = resultInfos
+            };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
+
+
 }
\ No newline at end of file

--
Gitblit v1.9.3