Explorar el Código

修改车险数据导出bug

wks hace 2 años
padre
commit
d868fb5feb
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/main/resources/mapper/modules/order/InsOrdersMapper.xml

+ 2 - 2
src/main/resources/mapper/modules/order/InsOrdersMapper.xml

@@ -413,10 +413,10 @@
             and b.orderstatus = #{orderstatus}
         </if>
         <if test="startDate != null ">
-            and a.signing_time &gt;= #{startDate}
+            and b.signing_time &gt;= #{startDate}
         </if>
         <if test="endDate != null ">
-            and a.signing_time &lt;= #{endDate}
+            and b.signing_time &lt;= #{endDate}
         </if>
     </select>