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