From bdfcb2760a617d0fb95ee934696a3dde477d7e68 Mon Sep 17 00:00:00 2001 From: kyy <3283105747@qq.com> Date: 星期五, 29 八月 2025 17:56:58 +0800 Subject: [PATCH] 1、获取检验项目前先删除 --- 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