24 lines
616 B
C#
24 lines
616 B
C#
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();
|
|
}
|
|
}
|