|
|
@@ -36,10 +36,10 @@
|
|
|
<if test="billImgUrl != null and billImgUrl != ''"> and hc.bill_img_url = #{billImgUrl}</if>
|
|
|
<!-- 创建时间范围过滤 -->
|
|
|
<if test="startDate != null">
|
|
|
- and DATE(hc.create_time) >= #{startDate}
|
|
|
+ and DATE(hc.create_time) > #{startDate}
|
|
|
</if>
|
|
|
<if test="endDate != null">
|
|
|
- and DATE(hc.create_time) <= #{endDate}
|
|
|
+ and DATE(hc.create_time) < #{endDate}
|
|
|
</if>
|
|
|
</where>
|
|
|
order by hc.create_time desc
|