Files
DMS/DMS.Core/Interfaces/Services/IExcelService.cs

14 lines
382 B
C#
Raw Normal View History

2025-08-11 12:48:51 +08:00
using DMS.Core.Models;
2025-08-25 20:16:57 +08:00
namespace DMS.Core.Interfaces.Services;
2025-08-11 12:48:51 +08:00
public interface IExcelService
{
/// <summary>
/// 从博途的变量表中导如变量
/// </summary>
/// <param name="excelFilePath"></param>
/// <returns></returns>
/// <exception cref="AggregateException"></exception>
List<Variable> ImprotFromTiaVariableTable(string excelFilePath);
}