using Kingo.Plugin.BGResultManager.Utility;
namespace kingo.Plugin.BGResultManager.Interface
{
public interface IStatisticExport
{
///
/// 输出路径
///
string OutPath { get; set; }
///
/// 面积单位
///
ReportFileTypeEnum AreaUnit { get; set; }
///
/// 导出Excel报表
///
void ExportReport(ReportTypeEnum pReportType);
///
/// 导出Word报告
///
///
void ExportWordReport(ReportTypeEnum pReportType);
}
}