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.
19 lines
516 B
19 lines
516 B
3 weeks ago
|
using TaskManager.Contracts.Dtos;
|
||
|
using TaskManager.Controllers;
|
||
|
using TaskManager.Entity;
|
||
|
using TaskManager.EntityFramework;
|
||
|
|
||
|
namespace TaskManager.Controllers
|
||
|
{
|
||
|
//整车月度生产计划
|
||
|
|
||
|
|
||
|
|
||
|
public class SupplierProPlaningService : RecurringJobOutPageController<SUPPLIER_PRO_PLANING, SUPPLIER_PRO_PLANING_DETIAL_DTO>
|
||
|
{
|
||
|
public SupplierProPlaningService(HttpClient httpClient, JobDbContext jobDbContext, LogController log) : base(httpClient, jobDbContext, log)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|