25 lines
620 B
C#
25 lines
620 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 IProcessParameterService : IBaseService<ProcessParameter>
|
|||
|
|
{
|
|||
|
|
PagedInfo<ProcessParameterDto> GetList(ProcessParameterQueryDto parm);
|
|||
|
|
|
|||
|
|
ProcessParameter GetInfo(int Id);
|
|||
|
|
|
|||
|
|
ProcessParameter AddProcessParameter(ProcessParameter parm);
|
|||
|
|
|
|||
|
|
int UpdateProcessParameter(ProcessParameter parm);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|