using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tnb.WarehouseMgr.Interfaces { /// /// 转运签收服务接口类 /// public interface IWmsPDATransferSignService { Task IsMinStorage(CancellationToken? cts = default); } }