24 lines
597 B
C#
24 lines
597 B
C#
using RIZO.Model.MES.recipe.Dto;
|
|
using RIZO.Model;
|
|
using RIZO.Model.MES.recipe;
|
|
using MDM.Service;
|
|
|
|
namespace RIZO.Service.MES.recipe.IService
|
|
{
|
|
/// <summary>
|
|
/// 配方参数明细表service接口
|
|
/// </summary>
|
|
public interface IPfRecipeParametersService : IBaseService<PfRecipeParameters>
|
|
{
|
|
PagedInfo<PfRecipeParametersDto> GetList(PfRecipeParametersQueryDto parm);
|
|
|
|
PfRecipeParameters GetInfo(int ParamId);
|
|
|
|
|
|
PfRecipeParameters AddPfRecipeParameters(PfRecipeParameters parm);
|
|
int UpdatePfRecipeParameters(PfRecipeParameters parm);
|
|
|
|
|
|
}
|
|
}
|