feat(Column): add setter for property

Signed-off-by: benshi <807629978@qq.com>
This commit is contained in:
benshi 2025-05-27 21:09:18 +08:00
parent 82ed8229e2
commit 62b28a33a4

View File

@ -93,6 +93,10 @@ public class Column {
this.property = buildPropertyName();
}
public void setProperty(String property) {
this.property = property;
}
public String getProperty() {
return property;
}