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

17 lines
352 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 IWmsSetSortingService
{
Task PackSortingByAdd(CancellationToken? cts = default);
}
}