This commit is contained in:
mashuai 2024-09-20 16:53:24 +08:00
parent 4f81e40d57
commit 7f4997688c
2 changed files with 1 additions and 5 deletions

View File

@ -60,8 +60,7 @@ public class TbProjectServiceImpl implements TbProjectService {
*/
@Override
public List<TbProjectVo> queryByPage(TbProject tbProject) {
List<TbProjectVo> list = tbProjectDao.queryByPage(tbProject);
return list.stream().filter(project -> project.getProName() != null).collect(Collectors.toList());
return tbProjectDao.queryByPage(tbProject);
}
/**

View File

@ -65,9 +65,6 @@
from tb_people tp
left join sys_dict_data sda on tp.post_code = sda.dict_code
where tp.del_flag = '0'
<if test="relName != null and relName != ''">
and tp.rel_name = #{relName}
</if>
<if test="idCard != null and idCard != ''">
and tp.id_card = #{idCard}
</if>