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