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); } }