using System; using System.Collections.Generic; using System.Text; using Model.ModelDto.BllSoDto; namespace WMS.IBLL.IBllSoServer { public interface IExportAllotServer { /// /// 查询出库分配表信息 /// /// 出库单号 /// 波次单号 /// 托盘号 /// 物料编码 /// 物料名称 /// 批次 /// 状态 /// 盒号 /// /// /// /// List GetExportAllotList(string no, string waveNo, string palletNo, string skuNo, string skuName, string lotNo, string status, string boxNo, int page, int limit, out int count); /// /// 撤销分配(删除) /// /// 分配ID /// 操作人 void DelExportAllot(int id,int userId); } }