wjj há 1 dia atrás
pai
commit
abff79de5f

+ 2 - 2
fs-service/src/main/resources/mapper/handwrite/HandwriteCollectionMapper.xml

@@ -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) &gt; #{startDate}
             </if>
             <if test="endDate != null">
-                and DATE(hc.create_time) <= #{endDate}
+                and DATE(hc.create_time) &lt; #{endDate}
             </if>
         </where>
         order by hc.create_time desc