From 82b3f8085a114960dd0214dbc713467e4736e880 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Sat, 26 Aug 2017 01:32:38 +0800 Subject: [PATCH] - --- .../SqlSugar/Entities/Mapping/SugarMappingAttribute.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs b/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs index e7b3581dc..9af6b191e 100644 --- a/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs +++ b/Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs @@ -86,6 +86,12 @@ namespace SqlSugar get { return _ColumnDataType; } set { _ColumnDataType = value; } } + + private int? _DecimalDigits; + private int? DecimalDigits { + get { return _DecimalDigits; } + set { _DecimalDigits = value; } + } } }