Browse Source

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

gaodm 5 năm trước cách đây
mục cha
commit
c1fd926c04
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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>