This commit is contained in:
parent
4f81e40d57
commit
7f4997688c
|
|
@ -60,8 +60,7 @@ public class TbProjectServiceImpl implements TbProjectService {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<TbProjectVo> queryByPage(TbProject tbProject) {
|
public List<TbProjectVo> queryByPage(TbProject tbProject) {
|
||||||
List<TbProjectVo> list = tbProjectDao.queryByPage(tbProject);
|
return tbProjectDao.queryByPage(tbProject);
|
||||||
return list.stream().filter(project -> project.getProName() != null).collect(Collectors.toList());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -65,9 +65,6 @@
|
||||||
from tb_people tp
|
from tb_people tp
|
||||||
left join sys_dict_data sda on tp.post_code = sda.dict_code
|
left join sys_dict_data sda on tp.post_code = sda.dict_code
|
||||||
where tp.del_flag = '0'
|
where tp.del_flag = '0'
|
||||||
<if test="relName != null and relName != ''">
|
|
||||||
and tp.rel_name = #{relName}
|
|
||||||
</if>
|
|
||||||
<if test="idCard != null and idCard != ''">
|
<if test="idCard != null and idCard != ''">
|
||||||
and tp.id_card = #{idCard}
|
and tp.id_card = #{idCard}
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue