fix: bug-503 管理端,机型管理里面,热图这里,描点选择部件,这里需要能够搜索部件描述,现在是搜索不了部件描述

This commit is contained in:
曹鹏飞 2025-07-22 10:02:35 +08:00
parent 77a60f754b
commit 8189b7c027
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
AND pp.attr_id=#{request.attrId}
</if>
<if test="request.name!=null and request.name!=''">
AND pp.`name` LIKE CONCAT('%', #{request.name}, '%')
AND (pp.`name` LIKE CONCAT('%', #{request.name}, '%') or pp.`describe` LIKE CONCAT('%', #{request.name}, '%'))
</if>
</where>
ORDER BY pp.enable DESC,pp.id DESC