From 6fb192d29d6e257bd3ef69584f8feee1e1b2c3c4 Mon Sep 17 00:00:00 2001 From: chenlin Date: Mon, 26 Jan 2026 10:36:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=88=E7=94=9F=E4=BA=A7=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/MES/report/ReportController.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/DOAN.Admin.WebApi/Controllers/MES/report/ReportController.cs b/DOAN.Admin.WebApi/Controllers/MES/report/ReportController.cs index 3981638..78ec89e 100644 --- a/DOAN.Admin.WebApi/Controllers/MES/report/ReportController.cs +++ b/DOAN.Admin.WebApi/Controllers/MES/report/ReportController.cs @@ -69,6 +69,22 @@ namespace DOAN.WebApi.Controllers return SUCCESS(response); } + /// + /// 月生产完成率 + /// + /// + [HttpGet("monthlyProductionCompletionRate")] + public IActionResult MonthlyProductionCompletionRate() + { + var response = _ReportService.MonthlyProductionCompletionRate(DateTime.Today); + return SUCCESS(response); + } + + /// + /// 月生产数据导出 + /// + /// + /// [HttpGet("exportMonthProduct")] [Log(Title = "工单导出", BusinessType = BusinessType.EXPORT)] [AllowAnonymous]