!319 fix: Builder 缺少的字段构建。

Merge pull request !319 from 王帅/main
This commit is contained in:
Michael Yang 2023-08-28 12:38:16 +00:00 committed by Gitee
commit a80eeee687
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

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