20 lines
448 B
C#
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);
|
|
}
|
|
}
|