田源
2023-05-09 d2570148ec3884de3af721bd99c4b7acbbdee075
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 + '}';
    }
}