From 12c82c37acb998a3c269871e22e339d66b9f1c1d Mon Sep 17 00:00:00 2001 From: liulin <lin.liu@aliyun.com> Date: 星期五, 02 八月 2024 01:16:44 +0800 Subject: [PATCH] 自动生成代码 --- src/main/java/com/lunhan/xxx/service/TestInfoService.java | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/lunhan/xxx/service/TestInfoService.java b/src/main/java/com/lunhan/xxx/service/TestInfoService.java index 8c282f6..e05a50c 100644 --- a/src/main/java/com/lunhan/xxx/service/TestInfoService.java +++ b/src/main/java/com/lunhan/xxx/service/TestInfoService.java @@ -129,7 +129,7 @@ } public ExecutedResult<String> listSetSort(ReqListSetSort request) { - // 类别id列表 + // id列表 List<Long> listId = request.getList().stream().map(ReqSetSort::getId).collect(Collectors.toList()); // 验证记录是否存在 ExecutedResult<List<TestInfoPO>> checkExists = this.check4Id(listId); @@ -221,16 +221,16 @@ return ExecutedResult.success(exists); } protected ExecutedResult<List<TestInfoPO>> check4Id(List<Long> listId) { - // 从数据库查找类别 + // 从数据库查找测试信息 List<TestInfoPO> list = mapper.getList(listId); if (ListUtil.isNullOrEmpty(list)) { return ExecutedResult.failed("[测试信息]不存在." + listId); } - // 数据库找到的类别id列表 + // 数据库找到的id列表 List<Long> listIdFind = list.stream().map(TestInfoPO::getId).collect(Collectors.toList()); // 数量不一致 if (listId.size() != listIdFind.size()) { - // 筛选数据库不存在的类别 + // 筛选数据库不存在的测试信息 List<Long> listIdNotFound = listId.stream().filter(c -> !listIdFind.contains(c)).collect(Collectors.toList()); if (ListUtil.isNullOrEmpty(list)) { return ExecutedResult.failed("[测试信息]不存在." + listIdNotFound); -- Gitblit v1.9.3