From 5dc3cc86f5835369cd830f2a83318b9a8d69cf69 Mon Sep 17 00:00:00 2001
From: 啊鑫 <t2856754968@163.com>
Date: 星期二, 15 七月 2025 16:20:19 +0800
Subject: [PATCH] 11

---
 MESApplication/Controllers/QC/LljController.cs |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/MESApplication/Controllers/QC/LljController.cs b/MESApplication/Controllers/QC/LljController.cs
index 6fd9ee6..3b7009c 100644
--- a/MESApplication/Controllers/QC/LljController.cs
+++ b/MESApplication/Controllers/QC/LljController.cs
@@ -18,7 +18,7 @@
         try
         {
             dynamic resultInfos = new ExpandoObject();
-            (List<LtsLlj> item, int TotalCount) valueTuple = new LljService().GetPage(queryObj);
+            var valueTuple = new LljService().GetPage(queryObj);
             resultInfos.tbBillList = valueTuple.item;
             return new ResponseResult
             {
@@ -135,7 +135,8 @@
 
 
     [HttpPost("SetQSItemDetail")]
-    public ResponseResult SetQSItemDetail([FromBody] MesQaItemsDetectDetail12 detail)
+    public ResponseResult SetQSItemDetail(
+        [FromBody] MesQaItemsDetectDetail12 detail)
     {
         try
         {
@@ -157,7 +158,8 @@
     }
 
     [HttpPost("UpdateQSItemDetail")]
-    public ResponseResult UpdateQSItemDetail([FromBody] MesQaItemsDetectDetail12 detail)
+    public ResponseResult UpdateQSItemDetail(
+        [FromBody] MesQaItemsDetectDetail12 detail)
     {
         try
         {
@@ -270,7 +272,7 @@
             return ResponseResult.ResponseError(ex);
         }
     }
-    
+
     [HttpPost("getSearchPage")]
     public ResponseResult getSearchPage([FromBody] XJPageResult queryObj)
     {

--
Gitblit v1.9.3