wjj 1 일 전
부모
커밋
abff79de5f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      fs-service/src/main/resources/mapper/handwrite/HandwriteCollectionMapper.xml

+ 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