Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsPDATransferSignService.cs

17 lines
356 B
C#

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(CancellationToken? cts = default);
}
}