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]