临时提交

This commit is contained in:
2025-08-25 20:16:57 +08:00
parent 645671e4b9
commit 8290c96b1b
20 changed files with 1024 additions and 448 deletions

View File

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