人工空托盘入库

This commit is contained in:
2024-07-13 22:52:14 +08:00
parent 2dc8f04e4e
commit 724372b20a
5 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
namespace Tnb.WarehouseMgr.Interfaces
{
public interface IWmsEmptycarryInstockLogService
{
Task<Tnb.WarehouseMgr.Entities.Dto.Outputs.Result> Instock(WmsEmptycarryInstockServiceInstockInput input);
}
}