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.
25 lines
883 B
25 lines
883 B
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)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|