add method

This commit is contained in:
Looly
2022-03-01 12:50:22 +08:00
parent b73728f956
commit 90038e878f
4 changed files with 31 additions and 4 deletions

View File

@@ -377,4 +377,9 @@ public class Column implements Serializable, Cloneable {
public String toString() {
return "Column [tableName=" + tableName + ", name=" + name + ", type=" + type + ", size=" + size + ", isNullable=" + isNullable + "]";
}
@Override
public Column clone() throws CloneNotSupportedException {
return (Column) super.clone();
}
}