gcw_MV9p2JJN df44f145a9 MDM更新
2025-11-25 15:44:04 +08:00

25 lines
620 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MDM.Model;
using MDM.Model.Process;
using MDM.Model.Process.Dto;
using MDM.Service;
namespace MDM.Services.IProcessService
{
/// <summary>
/// 工艺参数表如温度、压力、时间等关联工艺路线与工序service接口
/// </summary>
public interface IProcessParameterService : IBaseService<ProcessParameter>
{
PagedInfo<ProcessParameterDto> GetList(ProcessParameterQueryDto parm);
ProcessParameter GetInfo(int Id);
ProcessParameter AddProcessParameter(ProcessParameter parm);
int UpdateProcessParameter(ProcessParameter parm);
}
}