| | |
| | | public Result memberCoinAddressList(String symbol) { |
| | | //获取用户ID |
| | | Long memberId = LoginUserUtils.getAppLoginUser().getId(); |
| | | Map<String, Object> columnMap = new HashMap<>(); |
| | | columnMap.put("member_id", memberId); |
| | | columnMap.put("symbol", symbol); |
| | | columnMap.put("symbolscoin_id", "2"); |
| | | List<MemberCoinAddressEntity> selectByMap = memberCoinAddressDao.selectCoinAddressListByMap(symbol,memberId); |
| | | MemberCoinAddressListVo memberCoinAddressListVo = new MemberCoinAddressListVo(); |
| | | List<MemberCoinAddressVo> arrayList = new ArrayList<>(); |
| | |
| | | |
| | | @Override |
| | | public Result memberCoinInfoList() { |
| | | //获取用户ID |
| | | Long memberId = LoginUserUtils.getAppLoginUser().getId(); |
| | | |
| | | MemberCoinInfoListVo memberCoinInfoListVo = new MemberCoinInfoListVo(); |
| | | List<PlatformSymbolsCoinEntity> selectByMap = platformSymbolsCoinDao.selectByMap(new HashMap<>()); |