This commit is contained in:
parent
4f81e40d57
commit
7f4997688c
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue