From ea73ec5a9cbcc1199f16dc73f368929366bb5f68 Mon Sep 17 00:00:00 2001 From: zhouhongjun <565221961@qq.com> Date: Thu, 5 Jun 2025 10:52:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E4=BD=8D=E4=B8=80?= =?UTF-8?q?=E6=AC=A1=E5=90=88=E6=A0=BC=E7=8E=87=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...herySupplierProStationFirstPassYieldService.cs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/API/Wood.Service/Controllers/CherySupplierProStationFirstPassYieldService.cs b/API/Wood.Service/Controllers/CherySupplierProStationFirstPassYieldService.cs index e84e607..22851ce 100644 --- a/API/Wood.Service/Controllers/CherySupplierProStationFirstPassYieldService.cs +++ b/API/Wood.Service/Controllers/CherySupplierProStationFirstPassYieldService.cs @@ -1,6 +1,17 @@ -namespace TaskManager.Controllers +using TaskManager.Contracts.Dtos; +using TaskManager.Entity; +using TaskManager.EntityFramework; + +namespace TaskManager.Controllers { - public class CherySupplierProStationFirstPassYieldService + /// + /// 工位一次合格率 + /// + public class CherySupplierProStationFirstPassyieldService : CheryRecurringJobInputPageController { + public CherySupplierProStationFirstPassyieldService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository) + { + + } } }