|
@@ -41,13 +41,13 @@
|
|
|
<if test="!dsFlay">
|
|
|
and (
|
|
|
<if test="dsUserId != null and dsUserId != ''">
|
|
|
- a.create_by=#{dsUserId} or
|
|
|
+ or a.create_by=#{dsUserId}
|
|
|
</if>
|
|
|
<if test="dsDeptId != null and dsDeptId != 0">
|
|
|
- a.dept_id=#{dsDeptId} or
|
|
|
+ or a.dept_id=#{dsDeptId}
|
|
|
</if>
|
|
|
<if test="dsDeptIds != null">
|
|
|
- a.dept_id in
|
|
|
+ or a.dept_id in
|
|
|
<foreach item="item" collection="dsDeptIds" separator="," open="(" close=")" index="">
|
|
|
#{item}
|
|
|
</foreach>
|