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