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