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
{
///
/// 生效配方
///
public interface IEffectiveRecipeService
{
List GetList(PfRefProductRecipeQueryDto parm);
}
}