diff --git a/search-tool/src/main/resources/mapper/TbCompanyPerfMapper.xml b/search-tool/src/main/resources/mapper/TbCompanyPerfMapper.xml
index 09fc2b3..ed09f51 100644
--- a/search-tool/src/main/resources/mapper/TbCompanyPerfMapper.xml
+++ b/search-tool/src/main/resources/mapper/TbCompanyPerfMapper.xml
@@ -62,7 +62,7 @@
owner_unit as ownerUnit,owner_phone as ownerPhone,create_time as createTime, create_user as createUser,
update_time as updateTime
from tb_company_perf where del_flag =0
- and pro_name = #{proName}
+ and pro_name like concat('%', #{proName}, '%')
and voltage = #{voltage}
and start_time BETWEEN STR_TO_DATE(#{startTime}, '%Y-%m-%d') AND STR_TO_DATE(#{endTime}, '%Y-%m-%d')
diff --git a/search-tool/src/main/resources/mapper/TbKeyPeopleMapper.xml b/search-tool/src/main/resources/mapper/TbKeyPeopleMapper.xml
index 049aa1e..710e66e 100644
--- a/search-tool/src/main/resources/mapper/TbKeyPeopleMapper.xml
+++ b/search-tool/src/main/resources/mapper/TbKeyPeopleMapper.xml
@@ -75,7 +75,7 @@
title,position,major,diploma, diploma_num as diplomaNum,level,is_normal as isNormal,
create_time,create_user,update_time,update_user,age
from tb_key_people where del_flag = 0
- and user_name = #{userName}
+ and user_name like concat('%', #{userName}, '%')
and title = #{title}
and diploma = #{diploma}
and major = #{major}
diff --git a/search-tool/src/main/resources/mapper/TbOtherPeopleMapper.xml b/search-tool/src/main/resources/mapper/TbOtherPeopleMapper.xml
index 8023b55..cc45c13 100644
--- a/search-tool/src/main/resources/mapper/TbOtherPeopleMapper.xml
+++ b/search-tool/src/main/resources/mapper/TbOtherPeopleMapper.xml
@@ -69,7 +69,7 @@
title,major,diploma, diploma_num as diplomaNum,level,is_normal as isNormal,
create_time,create_user,update_time,update_user
from tb_other_people where del_flag = 0
- and user_name = #{userName}
+ and user_name like concat('%', #{userName}, '%')
and title = #{title}
and diploma = #{diploma}
and major = #{major}
diff --git a/search-tool/src/main/resources/mapper/TbSubPeopleMapper.xml b/search-tool/src/main/resources/mapper/TbSubPeopleMapper.xml
index 71c2d0d..93a41af 100644
--- a/search-tool/src/main/resources/mapper/TbSubPeopleMapper.xml
+++ b/search-tool/src/main/resources/mapper/TbSubPeopleMapper.xml
@@ -51,8 +51,7 @@
from tb_sub_people tsp
left join tb_sub ts on tsp.sub_id = ts.id
where tsp.del_flag = 0
- and tsp.user_name = #{userName}
- and tsp.user_name = #{userName}
+ and tsp.user_name like concat('%', #{userName}, '%')
and tsp.title = #{title}
and tsp.diploma = #{diploma}
and tsp.sub_id = #{subId}
diff --git a/search-tool/src/main/resources/mapper/TbSubPerfMapper.xml b/search-tool/src/main/resources/mapper/TbSubPerfMapper.xml
index 29b0d47..5f74cc7 100644
--- a/search-tool/src/main/resources/mapper/TbSubPerfMapper.xml
+++ b/search-tool/src/main/resources/mapper/TbSubPerfMapper.xml
@@ -55,7 +55,7 @@
select id as id,sub_id as subId,pro_name as proName,cons_unit as consUnit,start_time as startTime,
end_time as endTime,ht_remark as htRemark,money as money,voltage as voltage
from tb_sub_perf where del_flag=0
- and pro_name = #{proName}
+ and pro_name like concat('%', #{proName}, '%')
and sub_id = #{subId}
and voltage = #{voltage}