25 lines
554 B
C#
25 lines
554 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 IProcessOperationService : IBaseService<ProcessOperation>
|
|
{
|
|
PagedInfo<ProcessOperationDto> GetList(ProcessOperationQueryDto parm);
|
|
|
|
ProcessOperation GetInfo(int OperationId);
|
|
|
|
ProcessOperation AddProcessOperation(ProcessOperation parm);
|
|
|
|
int UpdateProcessOperation(ProcessOperation parm);
|
|
|
|
}
|
|
}
|