即时库存-服务
This commit is contained in:
23
src/WMS.Web.Domain/IService/IInventoryDetailsService.cs
Normal file
23
src/WMS.Web.Domain/IService/IInventoryDetailsService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.Inventory;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
|
||||
namespace WMS.Web.Domain.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 即时库存-服务接口
|
||||
/// </summary>
|
||||
public interface IInventoryDetailsService
|
||||
{
|
||||
/// <summary>
|
||||
/// 生成:即时库存明细
|
||||
/// </summary>
|
||||
/// <param name="dtos"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> GenerateInventoryDetails(List<InventoryDetailsGenerateDto> dtos, bool isTransaction);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user