修复分组搜索错误

pull/22/head
rays 2021-06-19 09:57:50 +08:00
parent e14ea59336
commit 3f2b414c23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
LEFT JOIN sys_resource sr ON ar.resource_code = sr.resource_code
WHERE 1=1
<if test="paramCondition.groupName != null and paramCondition.groupName != ''">
AND sr.resource_name LIKE CONCAT('%', #{paramCondition.groupName}, '%')
AND ar.api_alias LIKE CONCAT('%', #{paramCondition.groupName}, '%')
OR sr.url LIKE CONCAT('%', #{paramCondition.groupName}, '%')
</if>
</select>