Files
tnb.server/WarehouseMgr/Tnb.WarehouseMgr.Interfaces/IWmsSetSortingService.cs
2023-08-03 15:18:00 +08:00

17 lines
358 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(CancellationTokenSource? cts = default);
}
}