| | |
| | | if (rechargeConfig.size() > 0 ){ |
| | | for (Map<String, Object> stringObjectMap : rechargeConfig) { |
| | | RechargeCentVo vo = new RechargeCentVo(); |
| | | vo.setAmount("¥ "+stringObjectMap.get("money")); |
| | | vo.setAmount(""+stringObjectMap.get("money")); |
| | | if (tAppUser.getIsVip() == 1){ |
| | | vo.setWpGold(stringObjectMap.get("MemberCoins")+"币"); |
| | | vo.setWpGold(stringObjectMap.get("MemberCoins")+""); |
| | | }else { |
| | | vo.setWpGold(stringObjectMap.get("usersCoins")+"币"); |
| | | vo.setWpGold(stringObjectMap.get("usersCoins")+""); |
| | | } |
| | | centVos.add(vo); |
| | | } |