| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- using Business;
- using Business.Dto;
- using Business.ResourceExamineManagement;
- using Volo.Abp.Application.Services;
- namespace Business.VSM
- {
- /// <summary>
- /// Sqe数据导入接口
- /// </summary>
- public interface ISqeExcelService : IApplicationService
- {
- /// <summary>
- /// 导入检测的excel文件到DataTable
- /// </summary>
- /// <param name="filePath"></param>
- /// <param name="sheetName"></param>
- /// <returns></returns>
- public DataTable ImportExcelSheetToDataTable_test(string filePath, string sheetName);
- /// <summary>
- /// 导入过程的excel文件到DataTable
- /// </summary>
- /// <param name="filePath"></param>
- /// <param name="sheetName"></param>
- /// <returns></returns>
- public DataTable ImportExcelSheetToDataTable_process(string filePath, string sheetName);
- }
- }
|