Commit b22cc161 by “Kongxiangkun”

工作台互动分析优化

parent 899fa225
......@@ -563,7 +563,7 @@ public class EventTrackServiceImpl extends ServiceImpl<EventTrackMapper, EventTr
eventTrackTypeNumVo.setNum(num);
item.getEventTrackTypeNumVoList().add(eventTrackTypeNumVo);
//设置排序
item.getEventTrackTypeNumVoList().stream().sorted(Comparator.comparingInt(EventTrackTypeNumVo::getType)).collect(Collectors.toList());
item.setEventTrackTypeNumVoList(item.getEventTrackTypeNumVoList().stream().sorted(Comparator.comparingInt(EventTrackTypeNumVo::getType)).collect(Collectors.toList()));
}
return eventTrackDeptNumVoList;
......
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