Commit c3316619 authored by wzp's avatar wzp

修改bug

parent e066dd49
...@@ -99,7 +99,10 @@ public class TBoardStatisticServiceImpl extends ServiceImpl<TBoardStatisticMappe ...@@ -99,7 +99,10 @@ public class TBoardStatisticServiceImpl extends ServiceImpl<TBoardStatisticMappe
@Override @Override
public Page<TDistrictBoardStatistic> getBoardDistrictPageList(Page<TDistrictBoardStatistic> page, TDistrictBoardStatistic district){ public Page<TDistrictBoardStatistic> getBoardDistrictPageList(Page<TDistrictBoardStatistic> page, TDistrictBoardStatistic district){
page.setRecords(boardStatisticMapper.getBoardDistrictPageList(page,district)); List<TDistrictBoardStatistic> list = boardStatisticMapper.getBoardDistrictPageList(page, district);
list.stream().forEach(l->l.setAreaName(l.getAreaName().replace("省","").replace("市","").
replace("自治区","").replace("特别行政区","").replace("壮族","").replace("回族","").replace("维吾尔","")));
page.setRecords(list);
return page; return page;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment