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.
43 lines
1.3 KiB
43 lines
1.3 KiB
3 years ago
|
/**
|
||
|
* Copyright (C), 2015-2020
|
||
|
* FileName: PageExcelPlusExporter
|
||
|
* Author: Louis
|
||
|
* Date: 2020/3/22 20:36
|
||
|
* Description: PageExcelPlusExporter
|
||
|
* History:
|
||
|
* <author> <time> <version> <desc>
|
||
|
*/
|
||
|
package com.fr.plugin.ifhd.export;
|
||
|
|
||
|
import com.fr.io.attr.ReportExportAttr;
|
||
|
import com.fr.io.exporter.AppExporter;
|
||
|
import com.fr.io.exporter.PageExcelExporter;
|
||
|
import com.fr.page.PaperSettingProvider;
|
||
|
import com.fr.report.report.Report;
|
||
|
import com.fr.third.org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 〈Function Description〉<br>
|
||
|
* 〈PageExcelPlusExporter〉
|
||
|
*
|
||
|
* @author Louis
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class PageExcelPlusExporter extends PageExcelExporter {
|
||
|
|
||
|
public PageExcelPlusExporter(List list) {
|
||
|
super(list);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected AppExporter getExporterFor2007(List<PaperSettingProvider> list) throws ClassNotFoundException {
|
||
|
return new PageExcel2007PlusExporter(list);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void innerExportReport(Report report, ReportExportAttr reportExportAttr, String s, HSSFWorkbook hssfWorkbook, List list, List<String> list1, int i) throws Exception {
|
||
|
super.innerExportReport(report, reportExportAttr, s, hssfWorkbook, list, list1, i);
|
||
|
}
|
||
|
}
|