Commit 0f314d90 by guojuxing

功能模块添加操作人名称的模糊查询

parent f41c9e18
......@@ -156,7 +156,8 @@
from tab_sys_function_module
where status = 1
<if test="search != null and search != ''">
and (function_module_name like concat('%', #{search}, '%') or function_module_code like concat('%', #{search}, '%'))
and (function_module_name like concat('%', #{search}, '%') or function_module_code like concat('%', #{search}, '%')
operation_name like concat('%', #{search}, '%'))
</if>
order by update_time desc
</select>
......
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