mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-18 02:56:30 +08:00
去掉role的searchString
This commit is contained in:
@@ -15,9 +15,9 @@
|
|||||||
SELECT * FROM zz_sys_role
|
SELECT * FROM zz_sys_role
|
||||||
<where>
|
<where>
|
||||||
<if test="sysRoleFilter != null">
|
<if test="sysRoleFilter != null">
|
||||||
<if test="sysRoleFilter.searchString != null and sysRoleFilter.searchString != ''">
|
<if test="sysRoleFilter.roleName != null and sysRoleFilter.roleName != ''">
|
||||||
<bind name= "safeSearchString" value= "'%' + sysRoleFilter.searchString + '%'"/>
|
<bind name= "safeRoleName" value= "'%' + sysRoleFilter.roleName + '%'"/>
|
||||||
AND IFNULL(role_name,'') LIKE #{safeSearchString}
|
AND role_name LIKE #{safeRoleName}
|
||||||
</if>
|
</if>
|
||||||
</if>
|
</if>
|
||||||
AND deleted_flag = ${@com.orange.admin.common.core.constant.GlobalDeletedFlag@NORMAL}
|
AND deleted_flag = ${@com.orange.admin.common.core.constant.GlobalDeletedFlag@NORMAL}
|
||||||
|
|||||||
Reference in New Issue
Block a user