| | |
| | | |
| | | private String column; |
| | | private String property; |
| | | //jdbcType |
| | | private String type; |
| | | |
| | | public MybatisColumnData(String column, String property, 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() { |
| | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getJdbcType() { |
| | | return jdbcType; |
| | | } |
| | | |
| | | public void setJdbcType(String jdbcType) { |
| | | this.jdbcType = jdbcType; |
| | | } |
| | | } |