using System; using System.Collections.Generic; using System.Text; using Model.ModelDto.BllCheckDto; namespace WMS.IBLL.IBllCheckServer { public interface IStockCheckLogServer { /// /// 获取盘点记录 /// /// 单据号 /// 状态 /// 托盘号 /// 箱码 /// 物料编码 /// 物料名称 /// 批次号 /// /// /// /// List GetStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, string lotNo, int page, int limit, out int count); /// /// 获取盘点记录-数据归档 /// /// public List GetArchivingStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, string lotNo, int page, int limit, out int count); } }