|
@@ -110,6 +110,12 @@
|
|
|
AND b.dept_id = #{deptId}
|
|
|
)
|
|
|
</if>
|
|
|
+ <if test="noIds != null and noIds.size != 0">
|
|
|
+ AND a.id NOT IN
|
|
|
+ <foreach collection="noIds" item="noId" open="(" separator="," close=")">
|
|
|
+ #{noId}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
<if test="tagName != null and tagName != ''">
|
|
|
AND a.tag_name like CONCAT('%', #{tagName}, '%')
|
|
|
</if>
|