diff --git a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/functionx/service/impl/FunctionxServiceImpl.java b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/functionx/service/impl/FunctionxServiceImpl.java index a3f5b44..85ed68f 100644 --- a/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/functionx/service/impl/FunctionxServiceImpl.java +++ b/jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/demo/functionx/service/impl/FunctionxServiceImpl.java @@ -28,7 +28,6 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.List; -import java.util.stream.Collectors; /** * @Description: 功能管理 @@ -284,8 +283,8 @@ public class FunctionxServiceImpl extends ServiceImpl bugDtoList = bugxService.queryBugDtoListByFunctionId(functionDto); // 功能对应的bug_type为2 - bugDtoList = bugDtoList.stream().filter(bugDto -> - bugDto.getType().equals(2)).collect(Collectors.toList()); +/* bugDtoList = bugDtoList.stream().filter(bugDto -> + bugDto.getType().equals(2)).collect(Collectors.toList());*/ functionDto.setBugDtoList(bugDtoList); functionDtoList.add(functionDto);