From 80808af74be9507f4bf0c126f58c52ae3054bb03 Mon Sep 17 00:00:00 2001
From: zjh <2207896513@qq.com>
Date: 星期五, 07 三月 2025 13:21:55 +0800
Subject: [PATCH] 获取图纸接口部分代码提交

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

diff --git a/StandardPda/MESApplication/Controllers/QC/LljController.cs b/StandardPda/MESApplication/Controllers/QC/LljController.cs
index 529ba55..f4c58c0 100644
--- a/StandardPda/MESApplication/Controllers/QC/LljController.cs
+++ b/StandardPda/MESApplication/Controllers/QC/LljController.cs
@@ -273,4 +273,31 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+    //IqcQaSubmit
+    [HttpPost("GetFileUrlByU9List")]
+    public ResponseResult GetFileUrlByU9List(LLJDto rkjDto)
+    {
+        try
+        {
+            //dynamic resultInfos = new ExpandoObject();
+            //var tbBillList =
+            //    new LljService().IqcQaSubmit(rkjDto);
+            //resultInfos.tbBillList = tbBillList;
+            string[] fileUrls =
+ {
+    "https://new-service.oss-cn-hangzhou.aliyuncs.com/sheet-attachment/1728624575152_ty5VSi9R.png",
+    "https://new-service.oss-cn-hangzhou.aliyuncs.com/sheet-attachment/1728624610583_EwIN55BL.pdf"
+};
+            return new ResponseResult
+            {
+                status = 0,
+                message = "OK",
+                data = fileUrls
+            };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
 }
\ No newline at end of file

--
Gitblit v1.9.3