From 0c602ea46345c42f462e0294ceef67b48adb1c49 Mon Sep 17 00:00:00 2001 From: wish Date: Wed, 19 Jul 2023 15:09:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E9=A1=B9=E7=9B=AE=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E7=95=8C=E9=9D=A2-=E5=8A=9F=E8=83=BD=E4=B8=8E=E8=A7=84?= =?UTF-8?q?=E5=88=99=E4=B8=AD=E9=87=8D=E5=A4=8D=E7=9A=84=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E4=B8=8D=E5=86=8D=E8=BF=87=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../demo/functionx/service/impl/FunctionxServiceImpl.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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);