using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Web.Core.Internal.Results; namespace WMS.Web.Domain.IService { /// /// 任务单的箱收货记录服务 /// public interface IInStockTaskBoxService { /// /// 解绑-收货的箱子 /// /// /// /// Task UnBind(List boxIds, bool isTransaction = true); } }