年度变更建库软件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.

25 lines
670 B

using Kingo.Plugin.YJJK.ModelEntity;
namespace Kingo.Plugin.YJJK.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);
}
}