Przeglądaj źródła

异常数据监控按照创建时间逆序排列

gaodm 5 lat temu
rodzic
commit
c1fd926c04
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/main/resources/mapper/QcAbnormalMapper.xml

+ 1 - 1
src/main/resources/mapper/QcAbnormalMapper.xml

@@ -41,7 +41,7 @@
             <![CDATA[ and t1.gmt_create >= DATE(#{startDate})]]>
         </if>
         <if test="endDate != null and endDate != ''">
-            <![CDATA[ and t1.gmt_create <= DATE(#{endDate})]]>
+            <![CDATA[ and t1.gmt_create < DATE(#{endDate})]]>
         </if>
         order by t1.gmt_create desc
     </select>