最低库存检查

This commit is contained in:
FanLian
2023-08-15 16:30:52 +08:00
parent f6d192079f
commit 77014b0ae1
6 changed files with 222 additions and 48 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Interfaces
{
/// <summary>
/// 转运签收服务接口类
/// </summary>
public interface IWmsPDATransferSignService
{
Task IsMinStorage(CancellationTokenSource? cts = default);
}
}