From 665b1467f96b511a0d5cb8434ae634b65d961aa3 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 22 Dec 2025 16:37:22 +0800
Subject: [PATCH] refactor(symbols): 移除多余的API响应注解
---
src/main/java/com/xcong/excoin/modules/coin/service/impl/CoinServiceImpl.java | 7 ++-----
1 files changed, 2 insertions(+), 5 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 27e8242..3b2a2cd 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
@@ -137,8 +137,6 @@
memberWalletCoinlist.add(coin);
coin.setWalletCode(CoinTypeEnum.USDT.toString());
memberWalletCoinlist.add(coin);
- coin.setWalletCode(CoinTypeEnum.EOS.toString());
- memberWalletCoinlist.add(coin);
coin.setWalletCode(CoinTypeEnum.XRP.toString());
memberWalletCoinlist.add(coin);
coin.setWalletCode(CoinTypeEnum.ETC.toString());
@@ -186,11 +184,10 @@
Long memberId = LoginUserUtils.getAppLoginUser().getId();
PlatformCnyUsdtExchangeEntity cnyUsdtExchange = cnyUsdtExchangeDao.getCNYAndUSDTOne();
BigDecimal cnyUsdt = cnyUsdtExchange.getValue();
+
Map<String, Object> columnMap = new HashMap<String, Object>();
columnMap.put("member_id", memberId);
-
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("wallet_code", "USDT");
+ columnMap.put("wallet_code", "USDT");
List<MemberWalletContractEntity> selectByMap = memberWalletContractDao.selectByMap(columnMap);
MemberWalletContractInfoVo memberWalletContractInfoVo = new MemberWalletContractInfoVo();
if(CollUtil.isNotEmpty(selectByMap)) {
--
Gitblit v1.9.1