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

mybaties中在xml中map添加一个list中的判断

时间:2016-08-05 17:54:01      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

 if (uIds.size() > 0) {
            map.put("uIds", uIds);
        } else {
            map.put("uIds", null);
        }
 <select id="queryCourseEvaluationPeopleByUIds" resultType="map" resultMap="BaseResultMap">
        select * from t_se_course_comment
        <where>
            <if test="map.kid!=null and map.kid!=‘‘">
                and course_id = #{map.kid}
            </if>
            <if test="map.uIds!=null">
                and evaluation_teacher in
                <foreach collection="map.uIds" item="item" index="index" open="(" close=")" separator=",">
                    #{item}
                </foreach>
            </if>

        </where>
        order by id ASC
    </select>

 

mybaties中在xml中map添加一个list中的判断

标签:

原文地址:http://www.cnblogs.com/Eddyer/p/5742072.html

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