年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
688 B

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