using Nirvana.Common.ApiBase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.Application.Excel
{
///
/// EXCEL处理
///
public interface IExcelService
{
///
/// 数据导出
///
///
///
Task ExportAsync(List> list);
}
}