package com.vci.ubcs.starter.poi.bo;
|
|
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class SheetDataSet {
|
private String sheetName;
|
private List<String> colName = new ArrayList();
|
private List<SheetRowData> rowData = new ArrayList();
|
|
public SheetDataSet() {
|
}
|
|
public String getSheetName() {
|
return this.sheetName;
|
}
|
|
public void setSheetName(String sheetName) {
|
this.sheetName = sheetName;
|
}
|
|
public List<SheetRowData> getRowData() {
|
return this.rowData;
|
}
|
|
public void setRowData(List<SheetRowData> rowData) {
|
this.rowData = rowData;
|
}
|
|
public List<String> getColName() {
|
return this.colName;
|
}
|
|
public void setColName(List<String> colName) {
|
this.colName = colName;
|
}
|
|
public String toString() {
|
return "SheetDataSet{sheetName='" + this.sheetName + '\'' + ", colName=" + this.colName + ", rowData=" + this.rowData + '}';
|
}
|
}
|