io.robe.crud.helper.Model Maven / Gradle / Ivy
package io.robe.crud.helper;
public class Model {
private String name;
private boolean nullable;
private String length;
private String type;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isNullable() {
return nullable;
}
public void setNullable(boolean nullable) {
this.nullable = nullable;
}
public String getLength() {
return length;
}
public void setLength(String length) {
this.length = length;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return "Name: " + name + " Nullable: " + nullable + " Length: " + length + " Type: " + type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy