Valeo_Line_MES_backend/MDM/Services/Recipe/IService/IPfRecipeTemplateService.cs
2026-01-10 13:47:54 +08:00

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);
}
}