package org.yeshi.utils.generater.entity;
|
|
public class MybatisColumnData {
|
|
private String column;
|
private String property;
|
//jdbcType
|
private String type;
|
|
private String jdbcType;
|
|
public MybatisColumnData(String column, String property, String type, String jdbcType) {
|
this.column = column;
|
this.property = property;
|
this.type = type;
|
this.jdbcType = jdbcType;
|
}
|
|
public String getColumn() {
|
return column;
|
}
|
|
public void setColumn(String column) {
|
this.column = column;
|
}
|
|
public String getProperty() {
|
return property;
|
}
|
|
public void setProperty(String property) {
|
this.property = property;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getJdbcType() {
|
return jdbcType;
|
}
|
|
public void setJdbcType(String jdbcType) {
|
this.jdbcType = jdbcType;
|
}
|
}
|