From 2164596695ab2be434de2e503a904f1c34e0b522 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Mon, 28 Aug 2023 20:32:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Builder=20=E7=BC=BA=E5=B0=91=E7=9A=84?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E6=9E=84=E5=BB=BA=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mybatisflex/codegen/config/ColumnConfig.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/ColumnConfig.java b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/ColumnConfig.java index f89afa77..38bdc14a 100644 --- a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/ColumnConfig.java +++ b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/ColumnConfig.java @@ -287,6 +287,16 @@ public class ColumnConfig implements Serializable { return this; } + public Builder large(Boolean large) { + this.columnConfig.setLarge(large); + return this; + } + + public Builder logicDelete(Boolean logicDelete) { + this.columnConfig.setLogicDelete(logicDelete); + return this; + } + public Builder version(Boolean version) { this.columnConfig.setVersion(version); return this;