2025-09-19 18:22:26 +08:00
|
|
|
using DOAN.Model;
|
|
|
|
|
using DOAN.Model.Dto;
|
2025-09-20 15:33:58 +08:00
|
|
|
using DOAN.Model.MES.process;
|
2025-09-23 16:53:22 +08:00
|
|
|
using DOAN.Model.MES.process.Dto;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2025-09-19 18:22:26 +08:00
|
|
|
|
2025-09-20 15:33:58 +08:00
|
|
|
namespace DOAN.Service.MES.process.IService
|
2025-09-19 18:22:26 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工艺路线表service接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IProcessmodelRoutingService : IBaseService<ProcessmodelRouting>
|
|
|
|
|
{
|
|
|
|
|
PagedInfo<ProcessmodelRoutingDto> GetList(ProcessmodelRoutingQueryDto parm);
|
|
|
|
|
|
|
|
|
|
ProcessmodelRouting GetInfo(int Id);
|
|
|
|
|
|
|
|
|
|
ProcessmodelRouting AddProcessmodelRouting(ProcessmodelRouting parm);
|
|
|
|
|
|
|
|
|
|
int UpdateProcessmodelRouting(ProcessmodelRouting parm);
|
|
|
|
|
|
2025-09-23 16:53:22 +08:00
|
|
|
int ImportExcel(IFormFile formFile, string username);
|
2025-09-19 18:22:26 +08:00
|
|
|
}
|
|
|
|
|
}
|