MySQL、mybatis的查询条件-时间段


1.配置文件中的写法

<if test="startTime !=null and startTime !='' ">
         <![CDATA[ and createTime  >=  #{startTime}  ]]>
    </if>
    <if test="endTime !=null and endTime!='' "  >
         <![CDATA[ and createTime <=  #{endTime}  ]]>
    </if>

2.Java代码中参数的传递

》实体类中的成员变量

private Date startTime;

private Date endTime;

 

entity.setStartTime(startTime);
entity.setEndTime(endTime);

》使用map集合封装参数

Map<String, Object> map = new HashMap<String, Object>();
map.put("startTime", startTime);
map.put("endTime", endTime);

 

IT技术和行业交流群 417691667


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM