|
@@ -52,6 +52,10 @@ public class DataChange {
|
|
|
Integer data2 = (Integer) data;
|
|
|
return new BigDecimal(data2);
|
|
|
}
|
|
|
+ if(data instanceof Double){
|
|
|
+ Double data3 = (Double) data;
|
|
|
+ return new BigDecimal(data3);
|
|
|
+ }
|
|
|
if(data instanceof BigDecimal){
|
|
|
return (BigDecimal) data;
|
|
|
}
|