From e14e307ceaa0b1b8a67fad890cd512dcd061ff96 Mon Sep 17 00:00:00 2001
From: hwh <332078369@qq.com>
Date: 星期四, 15 八月 2024 16:15:26 +0800
Subject: [PATCH] 异常提示信息
---
Wms/WMS.IBLL/IBllCheckServer/IStockCheckLogServer.cs | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/Wms/WMS.IBLL/IBllCheckServer/IStockCheckLogServer.cs b/Wms/WMS.IBLL/IBllCheckServer/IStockCheckLogServer.cs
index 6888f76..6ad57c4 100644
--- a/Wms/WMS.IBLL/IBllCheckServer/IStockCheckLogServer.cs
+++ b/Wms/WMS.IBLL/IBllCheckServer/IStockCheckLogServer.cs
@@ -1,7 +1,9 @@
锘縰sing System;
using System.Collections.Generic;
using System.Text;
+using System.Threading.Tasks;
using Model.ModelDto.BllCheckDto;
+using SqlSugar;
namespace WMS.IBLL.IBllCheckServer
{
@@ -21,14 +23,14 @@
/// <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);
}
}
--
Gitblit v1.8.0