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.
27 lines
630 B
27 lines
630 B
3 years ago
|
/*
|
||
|
* Copyright (C), 2018-2022
|
||
|
* Project: starter
|
||
|
* FileName: WordPlusExporter
|
||
|
* Author: Louis
|
||
|
* Date: 2022/2/23 15:38
|
||
|
*/
|
||
|
package com.fr.plugin.ifhd.export;
|
||
|
|
||
|
import com.fr.io.exporter.WordExporter;
|
||
|
import com.fr.main.workbook.ResultWorkBook;
|
||
|
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <WordPlusExporter>
|
||
|
*
|
||
|
* @author Louis
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class WordPlusExporter extends WordExporter {
|
||
|
@Override
|
||
|
public void export(OutputStream outputStream, ResultWorkBook resultWorkBook) throws Exception {
|
||
|
super.export(outputStream, resultWorkBook);
|
||
|
}
|
||
|
}
|