25 lines
538 B
C#
25 lines
538 B
C#
|
|
|
|
using MDM.Model;
|
|
using MDM.Model.Process;
|
|
using MDM.Model.Process.Dto;
|
|
using MDM.Service;
|
|
|
|
namespace MDM.Services.IProcessService
|
|
{
|
|
/// <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);
|
|
|
|
}
|
|
}
|