修改了从Excel导入

This commit is contained in:
2025-08-11 12:48:51 +08:00
parent 364d287a20
commit 2addd6d3b5
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using DMS.Core.Models;
namespace DMS.Infrastructure.Services;
public interface IExcelService
{
/// <summary>
/// 从博途的变量表中导如变量
/// </summary>
/// <param name="excelFilePath"></param>
/// <returns></returns>
/// <exception cref="AggregateException"></exception>
List<Variable> ImprotFromTiaVariableTable(string excelFilePath);
}