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 + '\'' +
|
'}';
|
}
|
|
}
|