22 lines
632 B
C#
22 lines
632 B
C#
using DOAN.Model.MES.recipe.Dto;
|
|
using DOAN.Model;
|
|
using DOAN.Model.MES.recipe;
|
|
|
|
namespace DOAN.Service.MES.recipe.IService
|
|
{
|
|
/// <summary>
|
|
/// 产品配方关联表service接口
|
|
/// </summary>
|
|
public interface IPfRefProductRecipeService : IBaseService<PfRefProductRecipe>
|
|
{
|
|
PagedInfo<PfRefProductRecipeDto> GetList(PfRefProductRecipeQueryDto parm);
|
|
|
|
PfRefProductRecipe GetInfo(int Id);
|
|
|
|
|
|
PfRefProductRecipe AddPfRefProductRecipe(PfRefProductRecipe parm);
|
|
int UpdatePfRefProductRecipe(PfRefProductRecipe parm);
|
|
List<RecipeCodePullDownDto> GetRecipeCodePullDown();
|
|
}
|
|
}
|