Merge pull request !1284 from mymx2/fix/db
This commit is contained in:
Looly 2024-12-17 15:06:35 +00:00 committed by Gitee
commit f3d63f85c3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -232,7 +232,7 @@ public class Column implements Serializable, Cloneable {
* @param digit 小数位数
* @return this
*/
public Column setDigit(final int digit) {
public Column setDigit(final Integer digit) {
this.digit = digit;
return this;
}