package com.vci.starter.poi.bo;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 工作表数据的集合
|
* @author weidy
|
*/
|
public class SheetDataSet {
|
/**
|
* 工作表名称
|
*/
|
private String sheetName;
|
|
public String getSheetName() {
|
return sheetName;
|
}
|
|
public void setSheetName(String sheetName) {
|
this.sheetName = sheetName;
|
}
|
|
public List<SheetRowData> getRowData() {
|
return rowData;
|
}
|
|
public void setRowData(List<SheetRowData> rowData) {
|
this.rowData = rowData;
|
}
|
|
/**
|
* 列的名称
|
*/
|
private List<String> colName = new ArrayList<String>();
|
|
|
public List<String> getColName() {
|
return colName;
|
}
|
|
public void setColName(List<String> colName) {
|
this.colName = colName;
|
}
|
|
/**
|
* 包含数据
|
*/
|
private List<SheetRowData> rowData = new ArrayList<SheetRowData>();
|
|
@Override
|
public String toString() {
|
return "SheetDataSet{" +
|
"sheetName='" + sheetName + '\'' +
|
", colName=" + colName +
|
", rowData=" + rowData +
|
'}';
|
}
|
}
|