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.
|
|
|
using TaskManager.Contracts.Dtos;
|
|
|
|
using TaskManager.Entity;
|
|
|
|
using TaskManager.EntityFramework;
|
|
|
|
|
|
|
|
namespace TaskManager.Controllers
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 生产过程数据
|
|
|
|
/// </summary>
|
|
|
|
public class CherySupplierProDataService : CheryRecurringJobInputPageExtendController<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)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|