From 93473e2792e5d23a168e575f17190a5e51ad7c9f Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期四, 17 七月 2025 09:55:58 +0800 Subject: [PATCH] 111 --- 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