Commit 8fb4ede1 by guojuxing

操作项查询调整:增加路径的模糊查询

parent 62a619a0
......@@ -371,7 +371,7 @@
from tab_sys_menu
where status=1
<if test="search != null and search != '' ">
and ( menu_name like concat('%', #{search}, '%') or menu_code like concat('%', #{search}, '%') or parent_code like concat('%', #{search}, '%') )
and ( menu_name like concat('%', #{search}, '%') or menu_code like concat('%', #{search}, '%') or parent_code like concat('%', #{search}, '%') or menu_url like concat('%', #{search}, '%') )
</if>
<if test="isGIC == 1">
and project = 'gic'
......
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