23 lines
588 B
C#
23 lines
588 B
C#
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);
|
|
}
|
|
}
|