From c9789cdd33a44c78255e48f9571a834767821aaf Mon Sep 17 00:00:00 2001
From: 如洲 陈 <1278080563@qq.com>
Date: 星期二, 05 八月 2025 20:16:37 +0800
Subject: [PATCH] 出库检

---
 MESApplication/Controllers/QC/BaseController.cs |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/MESApplication/Controllers/QC/BaseController.cs b/MESApplication/Controllers/QC/BaseController.cs
index dd54e7f..71ad051 100644
--- a/MESApplication/Controllers/QC/BaseController.cs
+++ b/MESApplication/Controllers/QC/BaseController.cs
@@ -81,4 +81,30 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+
+    //getByOqcFid
+    [HttpPost("getByOqcFid")]
+    public ResponseResult getByOqcFid([FromBody] JObject data)
+    {
+        var id = Convert.ToInt32(data["fid"].ToString());
+        var qsType = data["qsType"].ToString();
+        try
+        {
+            dynamic resultInfos = new ExpandoObject();
+            var tbBillList =
+                new BaseService().getByOqcFid(id, qsType);
+            resultInfos.tbBillList = tbBillList;
+            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