forked from fanruan/easyexcel
22 lines
324 B
22 lines
324 B
6 years ago
|
package com.alibaba.excel.read.builder;
|
||
|
|
||
|
import com.alibaba.excel.metadata.Workbook;
|
||
|
|
||
|
/**
|
||
|
* Build ExcelWriter
|
||
|
*
|
||
|
* @author zhuangjiaju
|
||
|
*/
|
||
|
public class ExcelReaderBuilder {
|
||
|
/**
|
||
|
* Workbook
|
||
|
*/
|
||
|
private Workbook workbook;
|
||
|
|
||
|
public ExcelReaderBuilder() {
|
||
|
this.workbook = new Workbook();
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|