From 97bb43118a81cf1804e0d36c77cf16d98f35d1fc Mon Sep 17 00:00:00 2001 From: zhouhongjun <565221961@qq.com> Date: Thu, 5 Jun 2025 11:24:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E8=89=BA=E6=9C=8D?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CherySupplierProProcessService.cs | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 API/Wood.Service/Controllers/CherySupplierProProcessService.cs diff --git a/API/Wood.Service/Controllers/CherySupplierProProcessService.cs b/API/Wood.Service/Controllers/CherySupplierProProcessService.cs new file mode 100644 index 0000000..a220268 --- /dev/null +++ b/API/Wood.Service/Controllers/CherySupplierProProcessService.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using TaskManager.Contracts.Dtos; +using TaskManager.Controllers; +using TaskManager.Entity; +using TaskManager.Entity.Entitys; +using TaskManager.EntityFramework; + +namespace Wood.Service.Controllers +{ + /// + /// 工艺 + /// + public class CherySupplierProProcessService : CheryRecurringJobInputPageController + { + public CherySupplierProProcessService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository) + { + + } + } +}