2025-08-11 12:48:51 +08:00
|
|
|
using DMS.Core.Models;
|
|
|
|
|
|
2025-08-22 20:24:09 +08:00
|
|
|
namespace DMS.Core.Interfaces;
|
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);
|
|
|
|
|
}
|