admin
2024-07-25 47e3087067abd35e6337c011f96d2338c0bb1aae
src/main/java/org/yeshi/utils/generater/entity/MybatisColumnData.java
@@ -4,13 +4,22 @@
    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 MybatisColumnData( String property) {
        this.property = property;
    }
    public String getColumn() {
        return column;
@@ -35,4 +44,12 @@
    public void setType(String type) {
        this.type = type;
    }
    public String getJdbcType() {
        return jdbcType;
    }
    public void setJdbcType(String jdbcType) {
        this.jdbcType = jdbcType;
    }
}