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 IProcessOperationReworkRuleService : IBaseService<ProcessOperationReworkRule>
|
|
|
|
|
{
|
|
|
|
|
PagedInfo<ProcessOperationReworkRuleDto> GetList(ProcessOperationReworkRuleQueryDto parm);
|
|
|
|
|
|
|
|
|
|
ProcessOperationReworkRule GetInfo(int ReworkRuleId);
|
|
|
|
|
|
|
|
|
|
ProcessOperationReworkRule AddProcessOperationReworkRule(ProcessOperationReworkRule parm);
|
|
|
|
|
|
|
|
|
|
int UpdateProcessOperationReworkRule(ProcessOperationReworkRule parm);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|