From 2addd6d3b5674f0c8044fb834e540f8579af0f0f Mon Sep 17 00:00:00 2001 From: "David P.G" Date: Mon, 11 Aug 2025 12:48:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E4=BB=8EExcel?= =?UTF-8?q?=E5=AF=BC=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DMS.Core/Interfaces/IExcelService.cs | 14 ++++++++++++++ DMS.Infrastructure/Services/ExcelService.cs | 6 ++++++ 2 files changed, 20 insertions(+) create mode 100644 DMS.Core/Interfaces/IExcelService.cs create mode 100644 DMS.Infrastructure/Services/ExcelService.cs diff --git a/DMS.Core/Interfaces/IExcelService.cs b/DMS.Core/Interfaces/IExcelService.cs new file mode 100644 index 0000000..a4d185e --- /dev/null +++ b/DMS.Core/Interfaces/IExcelService.cs @@ -0,0 +1,14 @@ +using DMS.Core.Models; + +namespace DMS.Infrastructure.Services; + +public interface IExcelService +{ + /// + /// 从博途的变量表中导如变量 + /// + /// + /// + /// + List ImprotFromTiaVariableTable(string excelFilePath); +} \ No newline at end of file diff --git a/DMS.Infrastructure/Services/ExcelService.cs b/DMS.Infrastructure/Services/ExcelService.cs new file mode 100644 index 0000000..170da54 --- /dev/null +++ b/DMS.Infrastructure/Services/ExcelService.cs @@ -0,0 +1,6 @@ +namespace DMS.Infrastructure.Services; + +public class ExcelService +{ + +} \ No newline at end of file