lihang
2023-04-25 3fade6d3b27f5666672bb3af610020367f790bda
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package com.vci.ubcs.starter.poi.bo;
 
 
import java.util.List;
import java.util.Map;
 
public class ReadExcelOption {
    private int fristRow = 1;
    private int sheetIndex = 0;
    private String sheetName;
    private boolean readAllSheet = false;
    private Map<String, List<ExcelColumnMap>> extendAttrMap;
 
    public String getSheetName() {
        return this.sheetName;
    }
 
    public void setSheetName(String sheetName) {
        this.sheetName = sheetName;
    }
 
    public ReadExcelOption() {
    }
 
    public ReadExcelOption(int fristRow) {
        this.fristRow = fristRow;
    }
 
    public ReadExcelOption(int fristRow, boolean readAllSheet) {
        this.fristRow = fristRow;
        this.readAllSheet = readAllSheet;
    }
 
    public int getFristRow() {
        return this.fristRow;
    }
 
    public void setFristRow(int fristRow) {
        this.fristRow = fristRow;
    }
 
    public int getSheetIndex() {
        return this.sheetIndex;
    }
 
    public void setSheetIndex(int sheetIndex) {
        this.sheetIndex = sheetIndex;
    }
 
    public boolean isReadAllSheet() {
        return this.readAllSheet;
    }
 
    public void setReadAllSheet(boolean readAllSheet) {
        this.readAllSheet = readAllSheet;
    }
 
    public Map<String, List<ExcelColumnMap>> getExtendAttrMap() {
        return this.extendAttrMap;
    }
 
    public void setExtendAttrMap(Map<String, List<ExcelColumnMap>> extendAttrMap) {
        this.extendAttrMap = extendAttrMap;
    }
 
    public String toString() {
        return "ReadExcelOption{fristRow=" + this.fristRow + ", sheetIndex=" + this.sheetIndex + ", sheetName='" + this.sheetName + '\'' + ", readAllSheet=" + this.readAllSheet + ", extendAttrMap=" + this.extendAttrMap + '}';
    }
}