Browse Source

-

pull/12/MERGE
sunkaixuan 7 years ago
parent
commit
82b3f8085a
  1. 6
      Src/Asp.Net/SqlSugar/Entities/Mapping/SugarMappingAttribute.cs

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

Loading…
Cancel
Save