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;
|
}
|
}
|