时间范围查询,且格式化为年月日,不需要时分秒
<!-- 时间范围查询,且格式化为年月日-->
slelect * from user where delete = 0
<!-- 时间-开始-->
<if test="startTime != null ">
<![CDATA[and date_format(create_time,'%Y-%m-%d') >= date_format( #{startPlanLoadTime},'%Y-%m-%d')]]>
</if>
<!-- 时间-结束-->
<if test="endTime != null">
<![CDATA[and date_format( create_time,'%Y-%m-%d') <= date_format( #{endPlanLoadTime},'%Y-%m-%d')]]>
</if>