修复Column.getDigit返回值错误问题

This commit is contained in:
Looly 2023-11-04 11:13:54 +08:00
parent 0101ab5668
commit 7771091a22
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# 🚀Changelog # 🚀Changelog
------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------
# 5.8.23(2023-10-30) # 5.8.23(2023-11-04)
### 🐣新特性 ### 🐣新特性
* 【json 】 改进TemporalAccessorSerializer支持dayOfMonth和month枚举名issue#I82AM8@Gitee * 【json 】 改进TemporalAccessorSerializer支持dayOfMonth和month枚举名issue#I82AM8@Gitee
@ -24,6 +24,7 @@
* 【http 】 修复options请求无响应体问题 * 【http 】 修复options请求无响应体问题
* 【core 】 ImgUtil的sliceByRowsAndCols背景无法透明问题issue#3347@Github * 【core 】 ImgUtil的sliceByRowsAndCols背景无法透明问题issue#3347@Github
* 【core 】 修复ClassUtil#scanJar未正确关闭文件问题issue#3361@Github * 【core 】 修复ClassUtil#scanJar未正确关闭文件问题issue#3361@Github
* 【db 】 修复Column.getDigit返回值错误问题issue#3370@Github
------------------------------------------------------------------------------------------------------------- -------------------------------------------------------------------------------------------------------------
# 5.8.22(2023-09-13) # 5.8.22(2023-09-13)

View File

@ -258,7 +258,7 @@ public class Column implements Serializable, Cloneable {
* *
* @return 大小或数据长度 * @return 大小或数据长度
*/ */
public int getDigit() { public Integer getDigit() {
return digit; return digit;
} }