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
{
///
/// Sqe数据导入接口
///
public interface ISqeExcelService : IApplicationService
{
///
/// 导入检测的excel文件到DataTable
///
///
///
///
public DataTable ImportExcelSheetToDataTable_test(string filePath, string sheetName);
///
/// 导入过程的excel文件到DataTable
///
///
///
///
public DataTable ImportExcelSheetToDataTable_process(string filePath, string sheetName);
}
}