Kaynağa Gözat

1.休眠时间调整 2.创哥表结构和我的不一致处理

王苗苗 1 hafta önce
ebeveyn
işleme
c3f00a9ae7

+ 1 - 1
slibra-system/src/main/java/com/slibra/business/service/impl/FrontServiceImpl.java

@@ -521,7 +521,7 @@ public class FrontServiceImpl implements IFrontService {
         }
         //休眠2分钟
         try {
-            TimeUnit.MINUTES.sleep(2);
+            TimeUnit.MINUTES.sleep(1);
         } catch (InterruptedException e) {
             throw new RuntimeException(e);
         }

+ 1 - 1
slibra-system/src/main/resources/mapper/business/AutoFeedbackMapper.xml

@@ -36,7 +36,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="cf != null  and cf != ''"> and cf = #{cf}</if>
             <if test="ext != null  and ext != ''"> and ext = #{ext}</if>
         </where>
-        and del_flag = 0 order by id desc
+        order by id desc
     </select>
     
     <select id="selectAutoFeedbackById" parameterType="Long" resultMap="AutoFeedbackResult">