From 9e114094d44696be6bebfe7e5a5c9842abc5404d Mon Sep 17 00:00:00 2001 From: YangYuGang <1378265336@qq.com> Date: 星期日, 20 四月 2025 20:28:48 +0800 Subject: [PATCH] 收货单列表(带分页),分页修改 --- Tiger.IBusiness/Common/IImportExcel.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tiger.IBusiness/Common/IImportExcel.cs b/Tiger.IBusiness/Common/IImportExcel.cs index ef4affd..2ba96f0 100644 --- a/Tiger.IBusiness/Common/IImportExcel.cs +++ b/Tiger.IBusiness/Common/IImportExcel.cs @@ -10,7 +10,7 @@ { public interface IImportExcel { - public Task<ApiAction> Import<T>(T newEntity, string jsonStr) where T : class, new(); - public Task<ApiAction<List<T>>> ValidateTableImport<T>(T newEntity, ImportEntityValidate input); + public Task<ApiAction> Import<T>(T newEntity, ImportInput input) where T : class, new(); + public Task<ApiAction<List<T>>> ValidateTableImport<T>(T newEntity, ImportValidateInput input); } } -- Gitblit v1.9.3