Browse Source

feat: 预测对比查询条件增加 timeEnd、timeBegin

sunxiao 8 months ago
parent
commit
390827dfa7

+ 8 - 0
slibra-quartz/src/main/java/com/slibra/quartz/task/TempFile.java

@@ -0,0 +1,8 @@
+package com.slibra.quartz.task;
+
+public class TempFile {
+    public static void main(String[] args) {
+        Integer[] arr = {1,2,3,4};
+
+    }
+}

+ 2 - 0
slibra-system/src/main/resources/mapper/business/TXinyiForecastComparisonMapper.xml

@@ -208,6 +208,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="yyThreeSubtract != null "> and yy_three_subtract = #{yyThreeSubtract}</if>
             <if test="revision != null "> and revision = #{revision}</if>
             <if test="remark != null "> and remark = #{remark}</if>
+            <if test="timeBegin != null  and timeBegin != ''"> and remark &gt;= #{timeBegin}</if>
+            <if test="timeEnd != null  and timeEnd != ''"> and remark &lt;= #{timeEnd}</if>
         </where>
         and del_flag = 0 order by id desc
     </select>