using DOAN.Model.MES.recipe.Dto;
using DOAN.Model;
using DOAN.Model.MES.recipe;
namespace DOAN.Service.MES.recipe.IService
{
///
/// 产品配方关联表service接口
///
public interface IPfRefProductRecipeService : IBaseService
{
PagedInfo GetList(PfRefProductRecipeQueryDto parm);
PfRefProductRecipe GetInfo(int Id);
PfRefProductRecipe AddPfRefProductRecipe(PfRefProductRecipe parm);
int UpdatePfRefProductRecipe(PfRefProductRecipe parm);
List GetRecipeCodePullDown();
}
}