fix: 缺陷列表按ID搜索失效

This commit is contained in:
chenjianxing 2021-10-25 15:01:06 +08:00 committed by jianxing
parent 63037ffb1c
commit 26970d290b
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@
<if test="request.name != null">
and (
issues.title LIKE CONCAT('%', #{request.name}, '%')
or issues.id LIKE CONCAT('%', #{request.name}, '%')
or issues.num LIKE CONCAT('%', #{request.name}, '%')
)
</if>