赵新宇 2 weeks ago
parent
commit
aa0adf331b
  1. 2
      API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs
  2. 17
      API/Wood.Service/Controllers/CherySupplierProCpsService.cs
  3. 17
      API/Wood.Service/Controllers/CherySupplierProDataService.cs
  4. 18
      API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs
  5. 24
      API/Wood.Service/Controllers/CherySupplierProProcessService.cs
  6. 15
      API/Wood.Service/Controllers/CherySupplierProStationFirstPassYieldService.cs
  7. 18
      API/Wood.Service/Controllers/CherySupplier_Pro_FlawService.cs
  8. 6
      API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs
  9. 6
      API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs
  10. 6
      API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs
  11. 6
      API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs

2
API/TaskManager.Contracts/Dtos/01_09/SUPPLIER_PRO_FIRST_PASSYIELD_DTO.cs

@ -10,7 +10,7 @@ namespace TaskManager.Contracts.Dtos
/// <summary>
/// 产品一次合格率
/// </summary>
public class SUPPLIER_PRO_FIRST_PASSYIELD : BaseEntityDto
public class SUPPLIER_PRO_FIRST_PASSYIELD_DTO : BaseEntityDto
{
/// <summary>
/// 供应商代码

17
API/Wood.Service/Controllers/CherySupplierProCpsService.cs

@ -0,0 +1,17 @@
using TaskManager.Contracts.Dtos;
using TaskManager.Entity;
using TaskManager.EntityFramework;
namespace TaskManager.Controllers
{
/// <summary>
/// 过程控制项质量数据
/// </summary>
public class CherySupplierProCpsService : CheryRecurringJobInputPageController<SUPPLIER_PRO_CPS, SUPPLIER_PRO_CPS_DTO>
{
public CherySupplierProCpsService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_CPS> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

17
API/Wood.Service/Controllers/CherySupplierProDataService.cs

@ -0,0 +1,17 @@
using TaskManager.Contracts.Dtos;
using TaskManager.Entity;
using TaskManager.EntityFramework;
namespace TaskManager.Controllers
{
/// <summary>
/// 生产过程数据
/// </summary>
public class CherySupplierProDataService : CheryRecurringJobInputPageController<SUPPLIER_PRO_DATA, SUPPLIER_PRO_DATA_DTO>
{
public CherySupplierProDataService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_DATA> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

18
API/Wood.Service/Controllers/CherySupplierProFirstPassyieldService.cs

@ -0,0 +1,18 @@
using TaskManager.Contracts.Dtos;
using TaskManager.Entity;
using TaskManager.EntityFramework;
namespace TaskManager.Controllers
{
/// <summary>
/// 产品一次合格率
/// </summary>
public class CherySupplierProFirstPassyieldService : CheryRecurringJobInputPageController<SUPPLIER_PRO_FIRST_PASSYIELD, SUPPLIER_PRO_FIRST_PASSYIELD_DTO>
{
public CherySupplierProFirstPassyieldService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_FIRST_PASSYIELD> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

24
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
{
/// <summary>
/// 工艺
/// </summary>
public class CherySupplierProProcessService : CheryRecurringJobInputPageController<SUPPLIER_PRO_PROCESS, SUPPLIER_PRO_PROCESS_DTO>
{
public CherySupplierProProcessService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_PROCESS> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

15
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
/// <summary>
/// 工位一次合格率
/// </summary>
public class CherySupplierProStationFirstPassyieldService : CheryRecurringJobInputPageController<SUPPLIER_PRO_STATION_FIRST_PASSYIELD, SUPPLIER_PRO_STATION_FIRST_PASSYIELD_DTO>
{
public CherySupplierProStationFirstPassyieldService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_STATION_FIRST_PASSYIELD> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

18
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
{
/// <summary>
/// 缺陷业务数据
/// </summary>
public class CherySupplier_Pro_FlawService : CheryRecurringJobInputPageController<SUPPLIER_PRO_FLAW, SUPPLIER_PRO_FLAW_DTO>
{
public CherySupplier_Pro_FlawService(HttpClient httpClient, JobDbContext jobDbContext, LogController log, IRepository<SUPPLIER_PRO_FLAW> repository) : base(httpClient, jobDbContext, log, repository)
{
}
}
}

6
API/Wood.Service/Controllers/SUPPLIER_PRO_CPS_Service.cs

@ -1,6 +0,0 @@
namespace TaskManager.Controllers
{
public class SUPPLIER_PRO_CPS_Service
{
}
}

6
API/Wood.Service/Controllers/SUPPLIER_PRO_DATA_Service.cs

@ -1,6 +0,0 @@
namespace TaskManager.Controllers
{
public class SUPPLIER_PRO_DATA_Service
{
}
}

6
API/Wood.Service/Controllers/SUPPLIER_PRO_FIRST_PASSYIELD_Service.cs

@ -1,6 +0,0 @@
namespace TaskManager.Controllers
{
public class SUPPLIER_PRO_FIRST_PASSYIELD_Service
{
}
}

6
API/Wood.Service/Controllers/SUPPLIER_PRO_FLAW_Service.cs

@ -1,6 +0,0 @@
namespace TaskManager.Controllers
{
public class SUPPLIER_PRO_FLAW_Service
{
}
}
Loading…
Cancel
Save