优化接口
This commit is contained in:
22
src/WMS.Web.Domain/IService/IInStockTaskBoxService.cs
Normal file
22
src/WMS.Web.Domain/IService/IInStockTaskBoxService.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
|
||||
namespace WMS.Web.Domain.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务单的箱收货记录服务
|
||||
/// </summary>
|
||||
public interface IInStockTaskBoxService
|
||||
{
|
||||
/// <summary>
|
||||
/// 解绑-收货的箱子
|
||||
/// </summary>
|
||||
/// <param name="boxIds"></param>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> UnBind(List<int> boxIds, bool isTransaction = true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user