using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.BllSoDto;
namespace WMS.IBLL.IBllSoServer
{
public interface IExportNoticeDetailServer
{
///
/// 查询出库总单信息
///
/// 出库单号
///
///
///
///
List GetExportNoticeDetailList(string soNo, int page, int limit, out int count);
///
/// 删除出库单明细
///
/// 明细Id
/// 操作人
///
bool DelExportNoticeDetail(int id,int userId);
#region 数据归档
///
/// 查询出库单明细信息-数据归档
///
/// 出库单号
///
///
///
///
List GetArchivingExportNoticeDetailList(string soNo, int page, int limit, out int count);
#endregion
}
}