|
@@ -285,6 +285,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="status != null and status != 0">
|
|
|
and u.status=#{status}
|
|
|
</if>
|
|
|
+ <if test="ids != null">
|
|
|
+ and u.id in
|
|
|
+ <foreach item="items" collection="ids" separator="," open="(" close=")" index="">
|
|
|
+ #{items}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
<if test="!dsFlay">
|
|
|
and
|
|
|
<trim prefix="(" prefixOverrides="or" suffix=")">
|