From 8fbfbfc48a9e2f3c023ce04d70f7a643c1af3a90 Mon Sep 17 00:00:00 2001
From: zhouhongjun <565221961@qq.com>
Date: Thu, 5 Jun 2025 10:05:40 +0800
Subject: [PATCH 1/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=BF=87=E7=A8=8B?=
=?UTF-8?q?=E6=8E=A7=E5=88=B6=E9=A1=B9=E8=B4=A8=E9=87=8F=E6=95=B0=E6=8D=AE?=
=?UTF-8?q?=E6=9C=8D=E5=8A=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Controllers/CherySupplierProCpsService.cs | 17 +++++++++++++++++
.../Controllers/SUPPLIER_PRO_CPS_Service.cs | 6 ------
2 files changed, 17 insertions(+), 6 deletions(-)
create mode 100644 API/Wood.Service/Controllers/CherySupplierProCpsService.cs
delete mode 100644 API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs
diff --git a/API/Wood.Service/Controllers/CherySupplierProCpsService.cs b/API/Wood.Service/Controllers/CherySupplierProCpsService.cs
new file mode 100644
index 0000000..11b1d15
--- /dev/null
+++ b/API/Wood.Service/Controllers/CherySupplierProCpsService.cs
@@ -0,0 +1,17 @@
+using TaskManager.Contracts.Dtos;
+using TaskManager.Entity;
+using TaskManager.EntityFramework;
+
+namespace TaskManager.Controllers
+{
+ ///
+ /// 过程控制项质量数据
+ ///
+ public class CherySupplierProCpsService : CheryRecurringJobInputPageController
+ {
+ public CherySupplierProCpsService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository)
+ {
+
+ }
+ }
+}
diff --git a/API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs b/API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs
deleted file mode 100644
index 795a21d..0000000
--- a/API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-namespace TaskManager.Controllers
-{
- public class SUPPLIER_PRO_CPS_Service
- {
- }
-}
From c56d11d417a5c72b033d1b21241c42847629cb5a Mon Sep 17 00:00:00 2001
From: zhouhongjun <565221961@qq.com>
Date: Thu, 5 Jun 2025 10:17:28 +0800
Subject: [PATCH 2/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=94=9F=E4=BA=A7?=
=?UTF-8?q?=E8=BF=87=E7=A8=8B=E6=95=B0=E6=8D=AE=E6=9C=8D=E5=8A=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Controllers/CherySupplierProDataService.cs | 17 +++++++++++++++++
.../Controllers/SUPPLIER_PRO_DATA_Service.cs | 6 ------
2 files changed, 17 insertions(+), 6 deletions(-)
create mode 100644 API/Wood.Service/Controllers/CherySupplierProDataService.cs
delete mode 100644 API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs
diff --git a/API/Wood.Service/Controllers/CherySupplierProDataService.cs b/API/Wood.Service/Controllers/CherySupplierProDataService.cs
new file mode 100644
index 0000000..6d3d62c
--- /dev/null
+++ b/API/Wood.Service/Controllers/CherySupplierProDataService.cs
@@ -0,0 +1,17 @@
+using TaskManager.Contracts.Dtos;
+using TaskManager.Entity;
+using TaskManager.EntityFramework;
+
+namespace TaskManager.Controllers
+{
+ ///
+ /// 生产过程数据
+ ///
+ public class CherySupplierProDataService : CheryRecurringJobInputPageController
+ {
+ public CherySupplierProDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository)
+ {
+
+ }
+ }
+}
diff --git a/API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs b/API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs
deleted file mode 100644
index 2d820c4..0000000
--- a/API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-namespace TaskManager.Controllers
-{
- public class SUPPLIER_PRO_DATA_Service
- {
- }
-}
From d5c569065a390ee5dc15b6fc29a32a1542fd9dde Mon Sep 17 00:00:00 2001
From: zhouhongjun <565221961@qq.com>
Date: Thu, 5 Jun 2025 10:40:19 +0800
Subject: [PATCH 3/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BA=A7=E5=93=81?=
=?UTF-8?q?=E4=B8=80=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
---
.../01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs | 2 +-
.../CherySupplierProFirstPassyieldService.cs | 18 ++++++++++++++++++
.../SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs | 6 ------
3 files changed, 19 insertions(+), 7 deletions(-)
create mode 100644 API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs
delete mode 100644 API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs
diff --git a/API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs b/API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs
index 53640b4..31bf021 100644
--- a/API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs
+++ b/API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs
@@ -10,7 +10,7 @@ namespace TaskManager.Contracts.Dtos
///
/// 产品一次合格率
///
- public class SUPPLIER_PRO_FIRST_PASSYIELD : BaseEntityDto
+ public class SUPPLIER_PRO_FIRST_PASSYIELD_DTO : BaseEntityDto
{
///
/// 供应商代码
diff --git a/API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs b/API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs
new file mode 100644
index 0000000..e7963f8
--- /dev/null
+++ b/API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs
@@ -0,0 +1,18 @@
+using TaskManager.Contracts.Dtos;
+using TaskManager.Entity;
+using TaskManager.EntityFramework;
+
+namespace TaskManager.Controllers
+{
+ ///
+ /// 产品一次合格率
+ ///
+ public class CherySupplierProFirstPassyieldService : CheryRecurringJobInputPageController
+ {
+ public CherySupplierProFirstPassyieldService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository)
+ {
+
+ }
+
+ }
+}
diff --git a/API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs b/API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs
deleted file mode 100644
index fc380e6..0000000
--- a/API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-namespace TaskManager.Controllers
-{
- public class SUPPLIER_PRO_FIRST_PASSYIELD_Service
- {
- }
-}
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 4/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E4=BD=8D?=
=?UTF-8?q?=E4=B8=80=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)
+ {
+
+ }
}
}
From 789174f98c8bd92787203fdcd7c8f36d2a98a39a Mon Sep 17 00:00:00 2001
From: zhouhongjun <565221961@qq.com>
Date: Thu, 5 Jun 2025 11:09:53 +0800
Subject: [PATCH 5/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BC=BA=E9=99=B7?=
=?UTF-8?q?=E4=B8=9A=E5=8A=A1=E6=95=B0=E6=8D=AE=E6=9C=8D=E5=8A=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../CherySupplier_Pro_FlawService.cs | 18 ++++++++++++++++++
.../Controllers/SUPPLIER_PRO_FLAW_Service.cs | 6 ------
2 files changed, 18 insertions(+), 6 deletions(-)
create mode 100644 API/Wood.Service/Controllers/CherySupplier_Pro_FlawService.cs
delete mode 100644 API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs
diff --git a/API/Wood.Service/Controllers/CherySupplier_Pro_FlawService.cs b/API/Wood.Service/Controllers/CherySupplier_Pro_FlawService.cs
new file mode 100644
index 0000000..67055d3
--- /dev/null
+++ b/API/Wood.Service/Controllers/CherySupplier_Pro_FlawService.cs
@@ -0,0 +1,18 @@
+using TaskManager.Contracts.Dtos;
+using TaskManager.Entity;
+using TaskManager.Entity.Entitys;
+using TaskManager.EntityFramework;
+
+namespace TaskManager.Controllers
+{
+ ///
+ /// 缺陷业务数据
+ ///
+ public class CherySupplier_Pro_FlawService : CheryRecurringJobInputPageController
+ {
+ public CherySupplier_Pro_FlawService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository repository) : base(httpClient, jobDbContext, log, repository)
+ {
+
+ }
+ }
+}
diff --git a/API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs b/API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs
deleted file mode 100644
index 36d35ca..0000000
--- a/API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs
+++ /dev/null
@@ -1,6 +0,0 @@
-namespace TaskManager.Controllers
-{
- public class SUPPLIER_PRO_FLAW_Service
- {
- }
-}
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 6/6] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B7=A5=E8=89=BA?=
=?UTF-8?q?=E6=9C=8D=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)
+ {
+
+ }
+ }
+}