From e5244afa5493452cdb44137063a89a1484edc09f Mon Sep 17 00:00:00 2001
From: liulin <lin.liu@88.com>
Date: 星期日, 24 十一月 2024 22:39:46 +0800
Subject: [PATCH] quartz

---
 src/main/java/com/lunhan/xxx/service/TestInfoService.java |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/main/java/com/lunhan/xxx/service/TestInfoService.java b/src/main/java/com/lunhan/xxx/service/TestInfoService.java
index a6f40cb..e4ca14f 100644
--- a/src/main/java/com/lunhan/xxx/service/TestInfoService.java
+++ b/src/main/java/com/lunhan/xxx/service/TestInfoService.java
@@ -5,7 +5,7 @@
 import com.lunhan.xxx.common.enums.EYesOrNo;
 import com.lunhan.xxx.common.model.Tuple;
 import com.lunhan.xxx.common.util.*;
-import com.lunhan.xxx.entity.dto.search.SearchTestInfo;
+import com.lunhan.xxx.entity.search.SearchTestInfo;
 import com.lunhan.xxx.entity.enums.EState;
 import com.lunhan.xxx.entity.request.ReqListSetSort;
 import com.lunhan.xxx.entity.request.ReqSetSort;
@@ -33,7 +33,6 @@
     public ExecutedResult<Long> create(ReqCreateTestInfo request) {
         // 转换po
         TestInfoPO item = TestInfoConvert.INSTANCE.toCreate(request);
-        item.setId(SnowFlakeUtil.getId());
         // 设置状态
         item.setStatus(EState.NORMAL.getValue());
         // 设置记录创建时间
@@ -130,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);
@@ -222,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