Merge pull request #540 from BenLocal/main

feat: mybatis-flex-codegen实体类添加setProperty方法
This commit is contained in:
Michael Yang 2025-07-13 09:15:50 +08:00 committed by GitHub
commit ce86692bcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}