package org.yeshi.utils.generater.entity; public class MybatisColumnData { private String column; private String property; private String type; public MybatisColumnData(String column, String property, String type) { this.column = column; this.property = property; this.type = type; } 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; } }