fix(db): sync type

This commit is contained in:
m2 2024-12-17 14:50:17 +08:00
parent 6a0f237a0e
commit 221a927a30

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