修改了从Excel导入
This commit is contained in:
14
DMS.Core/Interfaces/IExcelService.cs
Normal file
14
DMS.Core/Interfaces/IExcelService.cs
Normal 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);
|
||||||
|
}
|
||||||
6
DMS.Infrastructure/Services/ExcelService.cs
Normal file
6
DMS.Infrastructure/Services/ExcelService.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace DMS.Infrastructure.Services;
|
||||||
|
|
||||||
|
public class ExcelService
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user