Compare commits

..

No commits in common. "bb81885eca083aa4ebd2c01063df3c7c93093072" and "32c8637573f4478c5d71c3fd1c3f052d4bb8eb99" have entirely different histories.

2 changed files with 0 additions and 13 deletions

View File

@ -35,9 +35,4 @@ public class AdminTicketSearchRequest extends TicketSearchRequest {
//代理商编码
private String agentCode;
/**
* 搜索关键字同时搜索标题设备编号设备机型问题描述问题部位
*/
private String key;
}

View File

@ -80,14 +80,6 @@
<if test="request.createUserName!=null and request.createUserName!=''">
AND d.customer_name LIKE CONCAT('%', #{request.createUserName}, '%')
</if>
<if test="request.key!=null and request.key!=''">
AND (t.title LIKE CONCAT('%', #{request.key}, '%')
or t.device_no LIKE CONCAT('%', #{request.key}, '%')
or d.model_no LIKE CONCAT('%', #{request.key}, '%')
or t.description LIKE CONCAT('%', #{request.key},'%')
or p.part_name LIKE CONCAT('%', #{request.key}, '%')
)
</if>
</where>
</sql>