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
688 B
25 lines
688 B
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); |
|
} |
|
}
|
|
|