From 0cff826ea489a1faa5cbb320cad52d102530a9e0 Mon Sep 17 00:00:00 2001
From: zjh <2207896513@qq.com>
Date: 星期四, 13 三月 2025 10:53:42 +0800
Subject: [PATCH] 代码提交

---
 StandardPda/MESApplication/Controllers/QC/LljController.cs |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/StandardPda/MESApplication/Controllers/QC/LljController.cs b/StandardPda/MESApplication/Controllers/QC/LljController.cs
index 529ba55..e5df8ef 100644
--- a/StandardPda/MESApplication/Controllers/QC/LljController.cs
+++ b/StandardPda/MESApplication/Controllers/QC/LljController.cs
@@ -273,4 +273,41 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+
+    //IqcQaSubmit
+    [HttpPost("GetFileUrlByU9List")]
+    public async Task<ResponseResult> GetFileUrlByU9List([FromBody] JObject data)
+    {
+        try
+        {
+            var type = data["type"]?.ToString();
+            var itemID = data["u9No"]?.ToString();
+            dynamic resultInfos = new ExpandoObject();
+            var lljService = new LljService();
+            var tbBillList = await lljService.GetFileUrlByU9List(type, itemID);
+            if (tbBillList!=null)
+            {
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = tbBillList
+                };
+            }
+            else
+            {
+                return new ResponseResult
+                {
+                    status = 0,
+                    message = "OK",
+                    data = ""
+                };
+            }
+            
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
 }
\ No newline at end of file

--
Gitblit v1.9.3