From db5e488203b05d785baf1614b727afaf20a03fe6 Mon Sep 17 00:00:00 2001
From: xwt <2740516069@qq.com>
Date: 星期五, 19 十二月 2025 18:52:05 +0800
Subject: [PATCH] llj备注

---
 StandardInterface/MESApplication/Controllers/QC/LljController.cs |   33 +++++++++++++++++++++++++++++----
 1 files changed, 29 insertions(+), 4 deletions(-)

diff --git a/StandardInterface/MESApplication/Controllers/QC/LljController.cs b/StandardInterface/MESApplication/Controllers/QC/LljController.cs
index 6c6bea7..abe3718 100644
--- a/StandardInterface/MESApplication/Controllers/QC/LljController.cs
+++ b/StandardInterface/MESApplication/Controllers/QC/LljController.cs
@@ -1,4 +1,4 @@
-锘縰sing System.Dynamic;
+using System.Dynamic;
 using MES.Service.Dto.service;
 using MES.Service.Modes;
 using MES.Service.service.QC;
@@ -294,9 +294,7 @@
         {
             return ResponseResult.ResponseError(ex);
         }
-    }
-
-    //IqcQaSubmit
+    }    //IqcQaSubmit
     [HttpPost("IqcQaSubmit")]
     public ResponseResult IqcQaSubmit(LLJDto rkjDto)
     {
@@ -318,6 +316,33 @@
             return ResponseResult.ResponseError(ex);
         }
     }
+
+    /// <summary>
+    /// 淇濆瓨澶囨敞鍒颁富琛�
+    /// </summary>
+    [HttpPost("saveLotNo1")]
+    public ResponseResult saveLotNo1([FromBody] JObject data)
+    {
+        var gid = Convert.ToDecimal(data["gid"].ToString());
+        var releaseNo = data["releaseNo"]?.ToString();
+        var lotNo1 = data["lotNo1"]?.ToString();
+        try
+        {
+            dynamic resultInfos = new ExpandoObject();
+            var tbBillList = new LljService().SaveLotNo1(gid, releaseNo, lotNo1);
+            resultInfos.tbBillList = tbBillList;
+            return new ResponseResult
+            {
+                status = 0,
+                message = "OK",
+                data = resultInfos
+            };
+        }
+        catch (Exception ex)
+        {
+            return ResponseResult.ResponseError(ex);
+        }
+    }
     [HttpPost("EmergencyRelease")]
     public ResponseResult EmergencyRelease([FromBody] JObject data)
     {

--
Gitblit v1.9.3