using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Volo.Abp.DependencyInjection; using Win.Sfs.Shared.ApplicationBase; namespace Win.Abp.ExcelImporter { public interface IExportImporter: ITransientDependency { /// /// 生成模板 /// /// /// Task GetExcelImportTemplate() where T : class, new(); /// /// 导入接口 /// /// /// /// /// Task UploadExcelImport([FromForm] IFormFileCollection files, IImportAppService cacheService) where T : class, new(); /// /// 导出接口 /// /// /// /// Task ExcelExporter(List dots) where T : class, new(); } }