入库检验

This commit is contained in:
qianhao.xu
2024-04-19 09:56:38 +08:00
parent 59dd7307d8
commit 20a0bca353
4 changed files with 131 additions and 9 deletions

View File

@@ -4,6 +4,7 @@ using ZR.Model.Dto;
using ZR.Model.MES.wms;
using System.Collections.Generic;
using ZR.Model.MES.wms.Dto;
using Microsoft.AspNetCore.Mvc;
namespace ZR.Service.mes.wms.IService
{
@@ -13,7 +14,7 @@ namespace ZR.Service.mes.wms.IService
public interface IWmFgentryInspectService : IBaseService<WmFgentryInspect>
{
PagedInfo<WmFgentryInspectDto> GetList(WmFgentryInspectQueryDto parm);
PagedInfo<WmFgentryInspectDto> GetList_first(WmFgentryInspectQueryDto parm);
PagedInfo<WmFgentryInspect_parentDto> GetList_first(WmFgentryInspectQueryDto parm);
PagedInfo<WmFgentryInspectDto> GetList_second(WmFgentryInspectQueryDto parm);
@@ -23,5 +24,8 @@ namespace ZR.Service.mes.wms.IService
int UpdateWmFgentryInspect(WmFgentryInspect parm);
int BatchQualified(string[] packcode_select,string updateby);
int BatchUnQualified(string[] packcode_select,string updateby);
}
}