dhz
2022-06-22 935b4b66b99b1f022f82cdaef8e3ef6599afbc72
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
package cn.ksource.web.util;
 
/**
 * Created by chenlong
 * Date:2017/7/13
 * time:9:26
 */
public class ExcelSupport {
 
    private String labelName;
 
    private String columnKey;
 
    public ExcelSupport() {
    }
 
    public ExcelSupport(String labelName, String columnKey) {
        this.labelName = labelName;
        this.columnKey = columnKey;
    }
 
    public String getLabelName() {
        return labelName;
    }
 
    public void setLabelName(String labelName) {
        this.labelName = labelName;
    }
 
    public String getColumnKey() {
        return columnKey;
    }
 
    public void setColumnKey(String columnKey) {
        this.columnKey = columnKey;
    }
 
    @Override
    public String toString() {
        return "ExcelSupport{" +
                "labelName='" + labelName + '\'' +
                ", columnKey='" + columnKey + '\'' +
                '}';
    }
 
}