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/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/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/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/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) + { + + } + } +} 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) + { + + } } } 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_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 - { - } -} 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 - { - } -} 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 - { - } -} 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 - { - } -}