生成-物料收发明细
This commit is contained in:
23
src/WMS.Web.Domain/IService/IInventoryInOutDetailsService.cs
Normal file
23
src/WMS.Web.Domain/IService/IInventoryInOutDetailsService.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 IInventoryInOutDetailsService
|
||||
{
|
||||
/// <summary>
|
||||
/// 生成:物料收发明细
|
||||
/// </summary>
|
||||
/// <param name="dtos"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> GenerateInOrOutDetails(List<InventoryInOutDetailsGenerateDto> dtos, bool isTransaction);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user