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

20 lines
448 B
C#

using RIZO.Model.MES.recipe.Dto;
using MDM.Models.Recipe.Dto;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MDM.Services.Recipe.IService
{
/// <summary>
/// 生效配方
/// </summary>
public interface IEffectiveRecipeService
{
List<EffectiveRecipeDto> GetList(PfRefProductRecipeQueryDto parm);
}
}