using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
namespace VueWebApi.Tools
{
public class DALSkillCondition
{
///
/// 下载excel
///
///
///
///
#region
public static bool ResultExcel(string path, DataTable dt)
{
try
{
NPOIHelper.ExportEasy(dt, path);
return true;
}
catch (Exception)
{
throw;
}
}
#endregion
}
}