24 lines
566 B
C#
24 lines
566 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 IPfRecipeTemplateService : IBaseService<PfRecipeTemplate>
|
|
{
|
|
PagedInfo<PfRecipeTemplateDto> GetList(PfRecipeTemplateQueryDto parm);
|
|
|
|
PfRecipeTemplate GetInfo(int Id);
|
|
|
|
|
|
PfRecipeTemplate AddPfRecipeTemplate(PfRecipeTemplate parm);
|
|
int UpdatePfRecipeTemplate(PfRecipeTemplate parm);
|
|
|
|
|
|
}
|
|
}
|