You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
938 B
29 lines
938 B
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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|