This commit is contained in:
sunkaixuan 2017-08-26 01:32:38 +08:00
parent 32d2a8b4ee
commit 82b3f8085a

View File

@ -86,6 +86,12 @@ namespace SqlSugar
get { return _ColumnDataType; }
set { _ColumnDataType = value; }
}
private int? _DecimalDigits;
private int? DecimalDigits {
get { return _DecimalDigits; }
set { _DecimalDigits = value; }
}
}
}