mybatis查询时间段

参考:https://bbs.csdn.net/topics/391838987

<!-- 查询条件:创建开始时间 -->
<if test="createdBegintime!=null and reatedBegintime!=''">
    AND CREATED &gt;= #{createdBegintime}
</if>

<!-- 查询条件:创建结束时间 -->
<if test="createdEndtime!=null and createdEndtime!=''">
    AND CREATED &lt;= #{createdEndtime}
</if>

 

posted @ 2018-07-15 11:15  lvlin241  阅读(154)  评论(0编辑  收藏  举报