Explorar o código

数据中心查询修改

wanxl hai 1 ano
pai
achega
64a075df0a
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/main/resources/mapper/errand/TbIndentMapper.xml

+ 2 - 2
src/main/resources/mapper/errand/TbIndentMapper.xml

@@ -610,10 +610,10 @@
             and s.indent_state = #{status}
         </if>
         <if test="query.startTime!=null and query.startTime!=''">
-            and create_time>=#{query.startTime}
+            and s.create_time>=#{query.startTime}
         </if>
         <if test="query.endTime!=null and query.endTime!=''">
-            and create_time <![CDATA[<=]]> #{query.endTime}
+            and s.create_time <![CDATA[<=]]> #{query.endTime}
         </if>
         order by s.create_time desc
     </select>