using System; using System.Collections.Generic; using System.Text; using Model.ModelDto.BllSoDto; namespace WMS.IBLL.IBllSoServer { public interface ICompleteDetailServer { /// /// 查询拣货明细信息 /// /// 分配ID /// /// /// /// List GetCompleteDetailList(int id, int page, int limit, out int count); /// /// 获取拣货明细中详细箱支信息 根据箱码\支码 /// /// 箱码 /// 支码 /// List GetCompBoxInfoList(string boxNo,string boxNo3); } }