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.
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|