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

25 lines
654 B
C#

using RIZO.Model;
using RIZO.Model.MES.recipe;
using RIZO.Model.MES.recipe.Dto;
using Infrastructure.Model;
using MDM.Service;
namespace RIZO.Service.MES.recipe.IService
{
/// <summary>
/// 配方下达记录表service接口
/// </summary>
public interface IPfRecipeIssueLogService : IBaseService<PfRecipeIssueLog>
{
PagedInfo<PfRecipeIssueLogDto> GetList(PfRecipeIssueLogQueryDto parm);
PfRecipeIssueLog GetInfo(int Id);
PfRecipeIssueLog AddPfRecipeIssueLog(PfRecipeIssueLog parm);
int UpdatePfRecipeIssueLog(PfRecipeIssueLog parm);
ApiResult IssueRecipe(PfRecipeIssueLog parm);
}
}