ISqeExcelService.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Text.RegularExpressions;
  7. using System.Threading.Tasks;
  8. using Business;
  9. using Business.Dto;
  10. using Business.ResourceExamineManagement;
  11. using Volo.Abp.Application.Services;
  12. namespace Business.VSM
  13. {
  14. /// <summary>
  15. /// Sqe数据导入接口
  16. /// </summary>
  17. public interface ISqeExcelService : IApplicationService
  18. {
  19. /// <summary>
  20. /// 导入检测的excel文件到DataTable
  21. /// </summary>
  22. /// <param name="filePath"></param>
  23. /// <param name="sheetName"></param>
  24. /// <returns></returns>
  25. public DataTable ImportExcelSheetToDataTable_test(string filePath, string sheetName);
  26. /// <summary>
  27. /// 导入过程的excel文件到DataTable
  28. /// </summary>
  29. /// <param name="filePath"></param>
  30. /// <param name="sheetName"></param>
  31. /// <returns></returns>
  32. public DataTable ImportExcelSheetToDataTable_process(string filePath, string sheetName);
  33. }
  34. }