38 changed files with 784 additions and 19 deletions
@ -0,0 +1,20 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using OfficeOpenXml.FormulaParsing.Excel.Functions.Information; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// BOM主数据
|
|||
/// </summary>
|
|||
public class CherySupplierBomLogService : NormalBaseController<SUPPLIER_BOM_LOGS> |
|||
{ |
|||
public CherySupplierBomLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_BOM_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,23 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.EntityFrameworkCore; |
|||
using Microsoft.EntityFrameworkCore.Storage; |
|||
using Microsoft.Extensions.Configuration; |
|||
using System.Collections.Generic; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 日物料需求计划风险确认
|
|||
/// </summary>
|
|||
public class CherySupplierConDatelogService : NormalBaseController<SUPPLIER_CON_DATE_LOGS> |
|||
{ |
|||
public CherySupplierConDatelogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_CON_DATE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.EntityFrameworkCore; |
|||
using Microsoft.EntityFrameworkCore.Storage; |
|||
using Microsoft.Extensions.Configuration; |
|||
using OfficeOpenXml.FormulaParsing.Excel.Functions.Math; |
|||
using Org.BouncyCastle.Bcpg.Sig; |
|||
using SkiaSharp; |
|||
using System.Xml; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// M+6月物料需求计划风险确认
|
|||
/// </summary>
|
|||
public class CherySupplierConMmrpLogService : NormalBaseController<SUPPLIER_CON_MMRP_LOGS> |
|||
{ |
|||
public CherySupplierConMmrpLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_CON_MMRP_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,23 @@ |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.EntityFrameworkCore; |
|||
using Microsoft.EntityFrameworkCore.Storage; |
|||
using Microsoft.Extensions.Configuration; |
|||
using System.Collections.Generic; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 采购订单风险确认
|
|||
/// </summary>
|
|||
public class CherySupplierConPoLogService : NormalBaseController<SUPPLIER_CON_PO> |
|||
{ |
|||
public CherySupplierConPoLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_CON_PO> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,21 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
|
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 看板送货单
|
|||
/// </summary>
|
|||
public class CherySupplierDelStateLogService : NormalBaseController<SUPPLIER_DEL_STATE_LOGS> |
|||
{ |
|||
public CherySupplierDelStateLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_DEL_STATE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 人员资质信息
|
|||
/// </summary>
|
|||
public class CherySupplierEmployeeLogService : NormalBaseController<SUPPLIER_EMPLOYEE_LOGS> |
|||
{ |
|||
public CherySupplierEmployeeLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_EMPLOYEE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 供应商基础信息
|
|||
/// </summary>
|
|||
public class CherySupplierInfoLogService : NormalBaseController<SUPPLIER_INFO_LOGS> |
|||
{ |
|||
public CherySupplierInfoLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_INFO_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 奇瑞RDC共享库存
|
|||
/// </summary>
|
|||
public class SupplierInvDataLogService : NormalBaseController<SUPPLIER_INV_DATA_LOGS> |
|||
{ |
|||
public SupplierInvDataLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_INV_DATA_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,23 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using System.Data.Common; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 日物料需求计划
|
|||
/// </summary>
|
|||
public class CherySupplierMrpDatalogService : NormalBaseController<SUPPLIER_MRP_DATE_LOGS> |
|||
{ |
|||
public CherySupplierMrpDatalogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_MRP_DATE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,29 @@ |
|||
using Magicodes.ExporterAndImporter.Core; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.EntityFrameworkCore; |
|||
using Microsoft.Extensions.Configuration; |
|||
using System.Data.Common; |
|||
using System.Linq.Dynamic.Core; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
using Z.BulkOperations; |
|||
using Z.EntityFramework.Extensions; |
|||
|
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// M+6月物料需求计划风险
|
|||
/// </summary>
|
|||
public class CherySupplierMrpMonthLogService : NormalBaseController<SUPPLIER_MRP_MONTH_LOGS> |
|||
{ |
|||
public CherySupplierMrpMonthLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_MRP_MONTH_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 日MRP状态监控
|
|||
/// </summary>
|
|||
public class CherySupplierMrpLogService : NormalBaseController<SUPPLIER_MRP_STATE_LOGS> |
|||
{ |
|||
public CherySupplierMrpLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_MRP_STATE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 日MRP预警推移
|
|||
/// </summary>
|
|||
public class CherySupplierMrpWarningLogService : NormalBaseController<SUPPLIER_MRP_WARNING_LOGS> |
|||
{ |
|||
public CherySupplierMrpWarningLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_MRP_WARNING_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,25 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using System.Data.Common; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 采购订单
|
|||
/// </summary>
|
|||
public class CherySupplierPoLogService : NormalBaseController<SUPPLIER_PO_LOGS> |
|||
{ |
|||
public CherySupplierPoLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PO_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,22 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 过焊装未过总装
|
|||
/// </summary>
|
|||
public class CherySupplierPorHSCHEDULLogService : NormalBaseController<SUPPLIER_PRO_HSCHEDUL_LOGS> |
|||
{ |
|||
public CherySupplierPorHSCHEDULLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_HSCHEDUL_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
} |
|||
|
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 附件类数据
|
|||
/// </summary>
|
|||
public class CherySupplierProAttachmentDataLogService : NormalBaseController<SUPPLIER_PRO_ATTACHMENT_DATA_LOGS> |
|||
{ |
|||
public CherySupplierProAttachmentDataLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_ATTACHMENT_DATA_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 排序供货
|
|||
/// </summary>
|
|||
public class CherySupplierProCSCHEDULLogService : NormalBaseController<SUPPLIER_PRO_CSCHEDUL_LOGS> |
|||
{ |
|||
public CherySupplierProCSCHEDULLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_CSCHEDUL_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 过程控制项质量数据
|
|||
/// </summary>
|
|||
public class CherySupplierProCpsLogService : NormalBaseController<SUPPLIER_PRO_CPS_LOGS> |
|||
{ |
|||
public CherySupplierProCpsLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_CPS_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,18 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 生产过程数据
|
|||
/// </summary>
|
|||
public class CherySupplierProDataLogService : NormalBaseController<SUPPLIER_PRO_DATA_LOGS> |
|||
{ |
|||
public CherySupplierProDataLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_DATA_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 环境业务数据
|
|||
/// </summary>
|
|||
public class CherySupplierProEnvironmentLogService : NormalBaseController<SUPPLIER_PRO_ENVIRONMENT_LOGS> |
|||
{ |
|||
public CherySupplierProEnvironmentLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_ENVIRONMENT_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
|
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 产品一次合格率
|
|||
/// </summary>
|
|||
public class CherySupplierProFirstPassyieldLogService : NormalBaseController<SUPPLIER_PRO_FIRST_PASSYIELD_LOGS> |
|||
{ |
|||
public CherySupplierProFirstPassyieldLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_FIRST_PASSYIELD_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 缺陷业务数据
|
|||
/// </summary>
|
|||
public class CherySupplierProFlawLogService : NormalBaseController<SUPPLIER_PRO_FLAW_LOGS> |
|||
{ |
|||
public CherySupplierProFlawLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_FLAW_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,16 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
public class CherySupplierProMaterialDataLogService : NormalBaseController<SUPPLIER_PRO_MATERIAL_DATA_LOGS> |
|||
{ |
|||
public CherySupplierProMaterialDataLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_MATERIAL_DATA_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 来料检验数据
|
|||
/// </summary>
|
|||
public class SupplierProMaterialStockLogService : NormalBaseController<SUPPLIER_PRO_MATERIAL_STOCK_LOGS> |
|||
{ |
|||
public SupplierProMaterialStockLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_MATERIAL_STOCK_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 设备OEE达成率
|
|||
/// </summary>
|
|||
public class CherySupplierProOeeAchievementRateLogService : NormalBaseController<SUPPLIER_PRO_OEE_ACHIEVEMENT_RATE_LOGS> |
|||
{ |
|||
public CherySupplierProOeeAchievementRateLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_OEE_ACHIEVEMENT_RATE_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// OEE时间明细
|
|||
/// </summary>
|
|||
public class CherySupplierProOeeTimeDetailsLogService : NormalBaseController<SUPPLIER_PRO_OEE_TIME_DETAILS_LOGS> |
|||
{ |
|||
public CherySupplierProOeeTimeDetailsLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_OEE_TIME_DETAILS_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,21 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
//整车月度生产计划
|
|||
/// <summary>
|
|||
/// 整车月度生产计划
|
|||
/// </summary>
|
|||
public class SupplierProPlaningLogService : NormalBaseController<SUPPLIER_PRO_PLANING_LOGS> |
|||
{ |
|||
public SupplierProPlaningLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_PLANING_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,19 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 工艺装备
|
|||
/// </summary>
|
|||
public class CherySupplierProProcessEquipmentLogService : NormalBaseController<SUPPLIER_PRO_PROCESS_EQUIPMENT_LOGS> |
|||
{ |
|||
public CherySupplierProProcessEquipmentLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_PROCESS_EQUIPMENT_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,24 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
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 CherySupplierProProcessLogService : NormalBaseController<SUPPLIER_PRO_PROCESS_LOGS> |
|||
{ |
|||
public CherySupplierProProcessLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_PROCESS_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,27 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.Entity.Entitys; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 排产数据
|
|||
/// </summary>
|
|||
public class CherySupplierProSchedulingLogService : NormalBaseController<SUPPLIER_PRO_SCHEDULING_LOGS> |
|||
{ |
|||
public CherySupplierProSchedulingLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_SCHEDULING_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,18 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
/// <summary>
|
|||
/// 工位一次合格率
|
|||
/// </summary>
|
|||
public class CherySupplierProStationFirstPassyieldLogService : NormalBaseController<SUPPLIER_PRO_STATION_FIRST_PASSYIELD_LOGS> |
|||
{ |
|||
public CherySupplierProStationFirstPassyieldLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_STATION_FIRST_PASSYIELD_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 过涂装未过总装
|
|||
/// </summary>
|
|||
public class CherySupplierProTSCHEDULLogService : NormalBaseController<SUPPLIER_PRO_TSCHEDUL_LOGS> |
|||
{ |
|||
public CherySupplierProTSCHEDULLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_PRO_TSCHEDUL_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,20 @@ |
|||
using Microsoft.Extensions.Configuration; |
|||
using TaskManager.Contracts.Dtos; |
|||
using TaskManager.Controllers; |
|||
using TaskManager.Entity; |
|||
using TaskManager.EntityFramework; |
|||
using Wood.Service.Controllers; |
|||
|
|||
namespace TaskManager.Controllers |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// 退货单
|
|||
/// </summary>
|
|||
public class CherySupplierReturnLogService : NormalBaseController<SUPPLIER_RETURN_LOGS> |
|||
{ |
|||
public CherySupplierReturnLogService(JobDbContext context, IServiceProvider builder, IConfiguration configuration, IRepository<SUPPLIER_RETURN_LOGS> repository) : base(context, builder, configuration, repository) |
|||
{ |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue