| | |
| | | int count = worldCupPaymentParticipantService.count(new QueryWrapper<WorldCupPaymentParticipant>().in("worldCupPaymentId", collect)); |
| | | heat += count; |
| | | } |
| | | String infoImg = worldCupInfo.getInfoImg(); |
| | | JSONArray jsonArray1 = JSON.parseArray(infoImg); |
| | | String imgs = ""; |
| | | for (int i = 0; i < jsonArray1.size(); i++) { |
| | | String url = jsonArray1.getJSONObject(i).getString("url"); |
| | | imgs += url + ","; |
| | | } |
| | | worldCupInfo.setInfoImg(imgs.substring(0,imgs.length() - 1)); |
| | | worldCupInfo.setHeat(heat); |
| | | ArrayList<Map<String, Object>> objects = new ArrayList<>(); |
| | | for (WorldCupStore worldCupStore : worldCupStores) { |