23 lines
514 B
C#
23 lines
514 B
C#
using Nirvana.Common.ApiBase;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Application.Excel
|
|
{
|
|
/// <summary>
|
|
/// EXCEL处理
|
|
/// </summary>
|
|
public interface IExcelService
|
|
{
|
|
/// <summary>
|
|
/// 数据导出
|
|
/// </summary>
|
|
/// <param name="list"></param>
|
|
/// <returns></returns>
|
|
Task<ResultInfo> ExportAsync(List<Dictionary<string, object>> list);
|
|
}
|
|
}
|