zhou zhou
5 小时以前 6e5ff559023efd2d24fdca2adcb7268d06420e46
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
package com.vincent.rsf.server.common.domain.report;
 
public class ReportColumnMeta {
    private String key;
    private String source;
    private String label;
    private Boolean isExtendField;
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getSource() {
        return source;
    }
 
    public void setSource(String source) {
        this.source = source;
    }
 
    public String getLabel() {
        return label;
    }
 
    public void setLabel(String label) {
        this.label = label;
    }
 
    public Boolean getIsExtendField() {
        return isExtendField;
    }
 
    public void setIsExtendField(Boolean extendField) {
        isExtendField = extendField;
    }
}