using Model.ModelDto; using Model.ModelDto.BllAsnDto; using Model.ModelDto.SysDto; using Model.ModelVm; using SqlSugar; using System; using System.Collections.Generic; using System.Diagnostics; using System.Text; using System.Threading.Tasks; using WMS.Entity.BllAsnEntity; namespace WMS.IBLL.IBllAsnServer { public interface IPalletUpShelfServer { /// /// 获取上架任务记录信息 /// /// 追溯号--入库单号 /// 任务号 /// 托盘号 /// 物料号 /// /// /// /// /// /// /// Task> GetPalletUpShelfList(string traceNo, string taskNo, string palletNo, string skuNo, string skuName,string lotNo,string status, int page, int limit, RefAsync count); } }