package DataBase;
|
|
public class Columns {//Êý¾Ý¿âµÄÁÐÀà
|
private String name;// ÁÐÃû
|
private String type;// ×Ö¶ÎÀàÐÍ
|
private boolean isNull;// ÊÇ·ñ¿ÉÒÔΪnull
|
private boolean isKey;// ÊÇ·ñÊÇÖ÷¼ü
|
private boolean isIncrement;// ÊÇ·ñ×ÔÔö
|
|
public Columns() {
|
super();
|
}
|
|
public Columns(String name, String type, boolean isNull, boolean isKey,
|
boolean isIncrement) {
|
super();
|
this.name = name;
|
this.type = type;
|
this.isNull = isNull;
|
this.isKey = isKey;
|
this.isIncrement = isIncrement;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public boolean isNull() {
|
return isNull;
|
}
|
|
public void setNull(boolean isNull) {
|
this.isNull = isNull;
|
}
|
|
public boolean isKey() {
|
return isKey;
|
}
|
|
public void setKey(boolean isKey) {
|
this.isKey = isKey;
|
}
|
|
public boolean isIncrement() {
|
return isIncrement;
|
}
|
|
public void setIncrement(boolean isIncrement) {
|
this.isIncrement = isIncrement;
|
}
|
|
@Override
|
public String toString() {
|
return "Columns [name=" + name + ", type=" + type + ", isNull="
|
+ isNull + ", isKey=" + isKey + ", isIncrement=" + isIncrement
|
+ "]";
|
}
|
|
}
|