add columnDef

This commit is contained in:
Looly 2021-04-18 09:47:50 +08:00
parent ebf1e37b12
commit b2cc737a82
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@
* 【core 】 DatePattern补充DateTimeFormatterpr#308@Gitee * 【core 】 DatePattern补充DateTimeFormatterpr#308@Gitee
* 【core 】 DateUtil.compare增加支持给定格式比较pr#310@Gitee * 【core 】 DateUtil.compare增加支持给定格式比较pr#310@Gitee
* 【core 】 BeanUtil增加edit方法issue#I3J6BG@Gitee * 【core 】 BeanUtil增加edit方法issue#I3J6BG@Gitee
* 【db 】 Column中加入columnDef字段默认值issue#I3J6BG@Gitee
### Bug修复 ### Bug修复
* 【db 】 修复SQL分页时未使用别名导致的错误同时count时取消order by子句issue#I3IJ8X@Gitee * 【db 】 修复SQL分页时未使用别名导致的错误同时count时取消order by子句issue#I3IJ8X@Gitee

View File

@ -51,9 +51,9 @@ public class Column implements Serializable, Cloneable {
* 是否自增 * 是否自增
*/ */
private boolean autoIncrement; private boolean autoIncrement;
/** /**
* default value for the column, which should be interpreted as a string when the value is enclosed in single quotes (may be <code>null</code>) * 字段默认值<br>
* default value for the column, which should be interpreted as a string when the value is enclosed in single quotes (may be {@code null})
*/ */
private String columnDef; private String columnDef;
/** /**