From 7fb56587503ad8b42308932ba1da917af4831b07 Mon Sep 17 00:00:00 2001 From: gongbiao Date: Thu, 25 Apr 2019 18:35:33 +0800 Subject: [PATCH] =?UTF-8?q?[BUG][ID1001405][=E4=BA=91=E7=AB=AF=EF=BC=9Aver?= =?UTF-8?q?sion:.978.1416=E5=95=86=E9=93=BA=E7=89=A9=E4=B8=9A=E5=92=8C?= =?UTF-8?q?=E5=A4=9A=E7=BB=8F=E7=9A=84=E7=A7=9F=E8=B5=81=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=95=B0=E8=BF=87=E5=A4=A7=E4=BC=9A=E6=88=90=E8=B4=9F=E6=95=B0?= =?UTF-8?q?=E9=9C=80=E8=A6=81=E9=99=90=E5=88=B6]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/iformall/service/impl/WxRentContractServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java b/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java index b4e6abde9..ef286d712 100644 --- a/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java +++ b/mallinkService/src/main/java/com/iformall/service/impl/WxRentContractServiceImpl.java @@ -1028,7 +1028,7 @@ public class WxRentContractServiceImpl implements WxRentContractService { } } DecimalFormat format = new DecimalFormat("0"); - needpay = Integer.parseInt(format.format(needPayDouble)); //分做四舍五入 + needpay = Long.parseLong(format.format(needPayDouble)); //分做四舍五入 } }