From 62b28a33a4cc64ebf367ce886fedb348c619f2ee Mon Sep 17 00:00:00 2001 From: benshi <807629978@qq.com> Date: Tue, 27 May 2025 21:09:18 +0800 Subject: [PATCH] feat(Column): add setter for property Signed-off-by: benshi <807629978@qq.com> --- .../src/main/java/com/mybatisflex/codegen/entity/Column.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/entity/Column.java b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/entity/Column.java index 2520e337..5df83580 100644 --- a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/entity/Column.java +++ b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/entity/Column.java @@ -93,6 +93,10 @@ public class Column { this.property = buildPropertyName(); } + public void setProperty(String property) { + this.property = property; + } + public String getProperty() { return property; }