增加最小库存判断处理

This commit is contained in:
FanLian
2023-08-15 14:26:12 +08:00
parent 69930e06a2
commit 4bec038890
3 changed files with 78 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
namespace Tnb.WarehouseMgr.Interfaces
{
@@ -11,5 +12,11 @@ namespace Tnb.WarehouseMgr.Interfaces
/// </summary>
public interface IWmsOutStockService
{
/// <summary>
/// MES申请出库
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
Task<dynamic> MESCreateOutstock(MESCreateOutstockInput input);
}
}