| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using Model.ModelDto.BllCheckDto; |
| | | using SqlSugar; |
| | | |
| | | namespace WMS.IBLL.IBllCheckServer |
| | | { |
| | |
| | | /// <param name="limit"></param> |
| | | /// <param name="count"></param> |
| | | /// <returns></returns> |
| | | List<StockCheckLogDto> GetStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, |
| | | string lotNo, int page, int limit, out int count); |
| | | Task<List<StockCheckLogDto>> GetStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, |
| | | string lotNo, int page, int limit, RefAsync<int> count); |
| | | |
| | | /// <summary> |
| | | /// 获取盘点记录-数据归档 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | public List<StockCheckLogDto> GetArchivingStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, |
| | | List<StockCheckLogDto> GetArchivingStockCheckLogList(string crNo, string status, string palletNo, string boxNo, string skuNo, string skuName, |
| | | string lotNo, int page, int limit, out int count); |
| | | } |
| | | } |