From fd575f1971b145088b56c125f9f3ce3bf2429ebc Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Fri, 14 May 2021 18:41:48 +0800
Subject: [PATCH] Merge branch 'yunding' of http://120.27.238.55:7000/r/exchange into yunding

---
 src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java b/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
index b91eb96..6dd5b92 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java
@@ -93,7 +93,7 @@
     public Result getWalletCoin() {
         //获取用户ID
         Long memberId = LoginUserUtils.getAppLoginUser().getId();
-//        Long memberId = 446L;
+//        Long memberId = 444L;
         PlatformCnyUsdtExchangeEntity cnyUsdtExchange = cnyUsdtExchangeDao.getCNYAndUSDTOne();
         BigDecimal cnyUsdt = cnyUsdtExchange.getValue();
 
@@ -107,10 +107,10 @@
                 for (MemberWalletCoinEntity memberWalletCoinEntity : memberWalletCoinlist) {
                     if ("USDT".equals(memberWalletCoinEntity.getWalletCode()) || "XCH".equals(memberWalletCoinEntity.getWalletCode())) {
                         MemberWalletCoinInfoVo memberWalletCoinInfoVo = new MemberWalletCoinInfoVo();
-                        memberWalletCoinInfoVo.setAvailableBalance(memberWalletCoinEntity.getAvailableBalance().setScale(4, BigDecimal.ROUND_DOWN));
-                        memberWalletCoinInfoVo.setFrozenBalance(memberWalletCoinEntity.getFrozenBalance().setScale(4, BigDecimal.ROUND_DOWN));
+                        memberWalletCoinInfoVo.setAvailableBalance(memberWalletCoinEntity.getAvailableBalance().setScale(8, BigDecimal.ROUND_DOWN));
+                        memberWalletCoinInfoVo.setFrozenBalance(memberWalletCoinEntity.getFrozenBalance().setScale(8, BigDecimal.ROUND_DOWN));
                         memberWalletCoinInfoVo.setMemberId(memberWalletCoinEntity.getMemberId());
-                        memberWalletCoinInfoVo.setTotalBalance(memberWalletCoinEntity.getTotalBalance().setScale(4, BigDecimal.ROUND_DOWN));
+                        memberWalletCoinInfoVo.setTotalBalance(memberWalletCoinEntity.getTotalBalance().setScale(8, BigDecimal.ROUND_DOWN));
                         memberWalletCoinInfoVo.setWalletCode(memberWalletCoinEntity.getWalletCode());
                         memberWalletCoinInfoVolist.add(memberWalletCoinInfoVo);
                     }
@@ -1035,7 +1035,7 @@
     			for(MemberCoinChargeEntity memberCoinChargeEntitys : records) {
     				CoinInListVo coinInListVo = new CoinInListVo();
     				coinInListVo.setSymbol(memberCoinChargeEntitys.getSymbol());
-    				coinInListVo.setAmount(memberCoinChargeEntitys.getAmount());
+    				coinInListVo.setAmount(memberCoinChargeEntitys.getAmount().toPlainString());
     				coinInListVo.setContent("充币");
     				coinInListVo.setStatus(memberCoinChargeEntitys.getStatus());
     				coinInListVo.setUpdateTime(memberCoinChargeEntitys.getUpdateTime());
@@ -1059,7 +1059,7 @@
     			for(MemberCoinWithdrawEntity memberCoinWithdrawEntitys : records) {
     				CoinInListVo coinInListVo = new CoinInListVo();
     				coinInListVo.setSymbol(memberCoinWithdrawEntitys.getSymbol());
-    				coinInListVo.setAmount(memberCoinWithdrawEntitys.getAmount());
+    				coinInListVo.setAmount(memberCoinWithdrawEntitys.getAmount().toPlainString());
     				coinInListVo.setContent("提币");
     				int status = memberCoinWithdrawEntitys.getStatus();
     				int statusOut = 0;
@@ -1095,7 +1095,7 @@
     			for(MemberAccountMoneyChange memberAccountMoneyChanges : records) {
     				CoinInListVo coinInListVo = new CoinInListVo();
     				coinInListVo.setSymbol(memberAccountMoneyChanges.getSymbol());
-    				coinInListVo.setAmount(memberAccountMoneyChanges.getAmount());
+    				coinInListVo.setAmount(memberAccountMoneyChanges.getAmount().toPlainString());
     				coinInListVo.setContent(memberAccountMoneyChanges.getContent());
     				coinInListVo.setStatus(memberAccountMoneyChanges.getStatus());
     				coinInListVo.setUpdateTime(memberAccountMoneyChanges.getUpdateTime());
@@ -1119,7 +1119,7 @@
     			for(MemberAccountMoneyChange memberAccountMoneyChanges : records) {
     				CoinInListVo coinInListVo = new CoinInListVo();
     				coinInListVo.setSymbol(memberAccountMoneyChanges.getSymbol());
-    				coinInListVo.setAmount(memberAccountMoneyChanges.getAmount());
+    				coinInListVo.setAmount(memberAccountMoneyChanges.getAmount().toPlainString());
     				coinInListVo.setContent(memberAccountMoneyChanges.getContent());
     				coinInListVo.setStatus(memberAccountMoneyChanges.getStatus());
     				coinInListVo.setUpdateTime(memberAccountMoneyChanges.getUpdateTime());

--
Gitblit v1.9.1