25 lines
654 B
C#
25 lines
654 B
C#
using RIZO.Model;
|
|
using RIZO.Model.MES.recipe;
|
|
using RIZO.Model.MES.recipe.Dto;
|
|
using Infrastructure.Model;
|
|
using MDM.Service;
|
|
|
|
namespace RIZO.Service.MES.recipe.IService
|
|
{
|
|
/// <summary>
|
|
/// 配方下达记录表service接口
|
|
/// </summary>
|
|
public interface IPfRecipeIssueLogService : IBaseService<PfRecipeIssueLog>
|
|
{
|
|
PagedInfo<PfRecipeIssueLogDto> GetList(PfRecipeIssueLogQueryDto parm);
|
|
|
|
PfRecipeIssueLog GetInfo(int Id);
|
|
|
|
|
|
PfRecipeIssueLog AddPfRecipeIssueLog(PfRecipeIssueLog parm);
|
|
int UpdatePfRecipeIssueLog(PfRecipeIssueLog parm);
|
|
|
|
ApiResult IssueRecipe(PfRecipeIssueLog parm);
|
|
}
|
|
}
|