package com.highdatas.mdm.pojo.kettle;
|
|
public class TableColumn {
|
|
private String columnName;
|
private String columnType;
|
private String columnLength;
|
|
public String getColumnName() {
|
return columnName;
|
}
|
|
public void setColumnName(String columnName) {
|
this.columnName = columnName;
|
}
|
|
public String getColumnType() {
|
return columnType;
|
}
|
|
public void setColumnType(String columnType) {
|
this.columnType = columnType;
|
}
|
|
public String getColumnLength() {
|
return columnLength;
|
}
|
|
public void setColumnLength(String columnLength) {
|
this.columnLength = columnLength;
|
}
|
|
}
|