码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis的where和if标签配合使用

时间:2019-04-06 16:49:18      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:parameter   stat   标签   auth   ble   mybatis   ges   current   span   

where标签用于简化sql的书写,if标签用于判断。大概的使用如下

<select id="getCountByPageInfo" parameterType="com.dabai.mytwo.entity.PageInfo">
        select count(*)
        from forum
        <where>
            <if test="institutionid!=null">
                institution_id=#{institution_id}
            </if>
            <if test="userid!=null">
                author_id=#{userid}
            </if>
        </where>
    </select>

其中pageInfo类如下

public class PageInfo implements Serializable {

    private static final long serialVersionUID = 1L;
    private Integer totalcount;
    private Integer currentpage;
    private Integer totalpage;
    private Integer pagesize;
    private Long institutionid;
    private Long forumid;
    private String userid;
    private String ids;
    private String code;
    //get  set方法
}

 

mybatis的where和if标签配合使用

标签:parameter   stat   标签   auth   ble   mybatis   ges   current   span   

原文地址:https://www.cnblogs.com/notably/p/10661974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!