2025-11-15 14:33:00 +08:00
|
|
|
|
|
|
|
|
|
2025-11-16 15:16:51 +08:00
|
|
|
using MDM.Model;
|
|
|
|
|
using MDM.Model.Process;
|
|
|
|
|
using MDM.Model.Process.Dto;
|
|
|
|
|
using MDM.Service;
|
2025-11-15 14:33:00 +08:00
|
|
|
|
2025-11-16 15:16:51 +08:00
|
|
|
namespace MDM.Services.IProcessService
|
2025-11-15 14:33:00 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工艺路线service接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IProcessRoutingService : IBaseService<ProcessRouting>
|
|
|
|
|
{
|
|
|
|
|
PagedInfo<ProcessRoutingDto> GetList(ProcessRoutingQueryDto parm);
|
|
|
|
|
|
|
|
|
|
ProcessRouting GetInfo(int RoutingId);
|
|
|
|
|
|
|
|
|
|
ProcessRouting AddProcessRouting(ProcessRouting parm);
|
|
|
|
|
|
|
|
|
|
int UpdateProcessRouting(ProcessRouting parm);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|