using DS.Module.Core;
using DS.Module.ExcelModule.Model;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.Module.ExcelModule
{
public interface IExcelService
{
///
/// 根据用户列导出Excel数据
///
/// 请求数据
///
public DataResult ExportExcelByColumn(ExportByColumnReq req);
///
///
///
///
///
public MemoryStream ExportExcelStreamByColumn(ExportByColumnReq req);
}
}