黑馬程序員Java項目實戰(zhàn)《瑞吉外賣》,輕松掌握springboot + myb
2023-08-02 19:34 作者:橘-域-網(wǎng) | 我要投稿

P77流的方式改成for循環(huán)的方式
????List<SetmealDto> list = new ArrayList<>();
????for (Setmeal setmeal:records) {
??????Category category = new Category();
??????SetmealDto setmealDto = new SetmealDto();
??????BeanUtils.copyProperties(setmeal,setmealDto);
??????category=categoryService.getById(setmeal.getCategoryId());
??????if (category!=null){
????????setmealDto.setCategoryName(category.getName());
????????list.add(setmealDto);
??????}
????}
????dtoPage.setRecords(list);
????return R.success(dtoPage);
???}
標(biāo)簽: