Commit d830f1ad by zhiwj

修改bug

parent b6d19ece
...@@ -375,8 +375,14 @@ ...@@ -375,8 +375,14 @@
<if test="search != null and search != '' "> <if test="search != null and search != '' ">
and name like concat('%', #{search}, '%') and name like concat('%', #{search}, '%')
</if> </if>
<if test="indexGroupId != null "> <!-- <if test="indexGroupId != null ">-->
and (index_group_id = #{indexGroupId} or index_group_id is null) <!-- and (index_group_id = #{indexGroupId} or index_group_id is null)-->
<!-- </if>-->
<if test="null != indexGroupIdList and indexGroupIdList.size > 0">
and index_group_id in
<foreach collection="indexGroupIdList" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</if> </if>
<if test="indexLevel != null "> <if test="indexLevel != null ">
and index_level = #{indexLevel} and index_level = #{indexLevel}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment