admin
2021-10-12 664cc2fd39177fd3daa6d3988396c704d130882c
src/main/java/org/yeshi/utils/generater/entity/MybatisColumnData.java
@@ -4,12 +4,16 @@
    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() {
@@ -35,4 +39,12 @@
    public void setType(String type) {
        this.type = type;
    }
    public String getJdbcType() {
        return jdbcType;
    }
    public void setJdbcType(String jdbcType) {
        this.jdbcType = jdbcType;
    }
}