first commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using JSMachine.WMS.App.Dto;
|
||||
using JSMachine.WMS.App.Dto.Enum;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JSMachine.WMS.Business.StockIn.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 入库策略
|
||||
/// </summary>
|
||||
public interface IStockInStrategy
|
||||
{
|
||||
/// <summary>
|
||||
/// 计算目标库位
|
||||
/// </summary>
|
||||
/// <param name="exceptColumnId">要排除的列(出库掏货再回库不可以回原来的列)</param>
|
||||
/// <returns></returns>
|
||||
Task<StorageRackDto> CalCulateWarehouse();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user