Wms自定义定时服务代码完善

This commit is contained in:
alex
2023-08-03 15:18:00 +08:00
parent a07b3c73fc
commit adda03e0fb
9 changed files with 289 additions and 146 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 IWmsSetSortingService
{
Task PackSortingByAdd(CancellationTokenSource? cts = default);
}
}