fix: bug-503 管理端,机型管理里面,热图这里,描点选择部件,这里需要能够搜索部件描述,现在是搜索不了部件描述
This commit is contained in:
parent
77a60f754b
commit
8189b7c027
|
|
@ -14,7 +14,7 @@
|
||||||
AND pp.attr_id=#{request.attrId}
|
AND pp.attr_id=#{request.attrId}
|
||||||
</if>
|
</if>
|
||||||
<if test="request.name!=null and request.name!=''">
|
<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>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
ORDER BY pp.enable DESC,pp.id DESC
|
ORDER BY pp.enable DESC,pp.id DESC
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue