ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopWithdrawController.java
@@ -98,10 +98,11 @@ shops = shopService.listByIds(collect); } for(ShopWithdraw item : records){ Optional<Shop> first = shops.stream().filter(s -> s.getId().equals(item.getId())).findFirst(); Optional<Shop> first = shops.stream().filter(s -> s.getId().equals(item.getShopId())).findFirst(); if(first.isPresent()){ item.setShopName(first.get().getName()); } item.setIdStr(item.getId().toString()); } return R.ok(page); }