From fb726bc28268c7efb73629f6ae12b25232a18538 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期六, 22 二月 2025 15:34:20 +0800 Subject: [PATCH] Add OPERATION_END property and update database handling --- 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