From 4201b945c24bbb1c6cc8efcb8fd92a37b5ebb496 Mon Sep 17 00:00:00 2001 From: nishengli Date: Wed, 27 Sep 2023 15:29:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=AA=8C=E7=AD=BE?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/tsl3060/open/extend/core/secure/RSASecure.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/tsl3060/open/extend/core/secure/RSASecure.java b/src/main/java/com/tsl3060/open/extend/core/secure/RSASecure.java index 8a4365e..88065ff 100644 --- a/src/main/java/com/tsl3060/open/extend/core/secure/RSASecure.java +++ b/src/main/java/com/tsl3060/open/extend/core/secure/RSASecure.java @@ -48,13 +48,13 @@ public class RSASecure implements ISecure { Object v = j.get(key); String vx; if (v instanceof Double) { - vx = String.format("%.2f", v); + vx = String.format("%s", BigDecimal.valueOf((Double) v).stripTrailingZeros()); } else if (v instanceof Float) { - vx = String.format("%.2f", v); + vx = String.format("%s", BigDecimal.valueOf((Float) v).stripTrailingZeros()); } else if (v instanceof Boolean) { vx = String.format("%s", v); } else if (v instanceof BigDecimal) { - vx = String.format("%.2f", v); + vx = String.format("%s", ((BigDecimal) v).stripTrailingZeros()); } else { vx = String.valueOf(v); } From baa3afceafb7d0b8423a0ce3a40e8391ef947492 Mon Sep 17 00:00:00 2001 From: nishengli Date: Wed, 27 Sep 2023 15:30:03 +0800 Subject: [PATCH 2/2] 0.3.9 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 74dc24b..562b848 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.tsl3060.open.extend tsl-open-sdk-java-wanshun - 0.3.8 + 0.3.9 8