Parcourir la source

修改车险数据导出bug

wks il y a 2 ans
Parent
commit
d868fb5feb
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  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>