田源
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
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
70
package com.vci.ubcs.starter.poi.bo;
 
public class ExcelColumnMap {
    private String title;
    private String columnName;
    private boolean nullable = true;
    private String regExg;
    private String regExgTitle;
    private String group;
 
    public ExcelColumnMap() {
    }
 
    public ExcelColumnMap(String title, String columnName) {
        this.title = title;
        this.columnName = columnName;
    }
 
    public String getTitle() {
        return this.title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getColumnName() {
        return this.columnName;
    }
 
    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }
 
    public boolean isNullable() {
        return this.nullable;
    }
 
    public void setNullable(boolean nullable) {
        this.nullable = nullable;
    }
 
    public String getRegExg() {
        return this.regExg;
    }
 
    public void setRegExg(String regExg) {
        this.regExg = regExg;
    }
 
    public String getRegExgTitle() {
        return this.regExgTitle;
    }
 
    public void setRegExgTitle(String regExgTitle) {
        this.regExgTitle = regExgTitle;
    }
 
    public String getGroup() {
        return this.group;
    }
 
    public void setGroup(String group) {
        this.group = group;
    }
 
    public String toString() {
        return "ExcelColumnMap{title='" + this.title + '\'' + ", columnName='" + this.columnName + '\'' + ", nullable=" + this.nullable + ", regExg='" + this.regExg + '\'' + ", regExgTitle='" + this.regExgTitle + '\'' + ", group='" + this.group + '\'' + '}';
    }
}