| | |
| | | |
| | | @Override |
| | | public List<TrendVo> queryListByCount(TrendAnalysisParam trendAnalysisParam, Integer pageSize, Integer pageNum) { |
| | | return trendAnalysisMapper.selectTrendInfo(trendAnalysisParam).stream().filter(item->"1".equals(item.getCount())).collect(Collectors.toList()); |
| | | return trendAnalysisMapper.selectTrendInfo(trendAnalysisParam).stream().filter(item->1==item.getCount()).collect(Collectors.toList()); |
| | | } |
| | | } |
| | |
| | | </where> |
| | | GROUP BY |
| | | t1.video_point_id |
| | | count DESC |
| | | ORDER BY count DESC |
| | | </select> |
| | | |
| | | <select id="selectTrendPointInfo" resultType="com.ycl.vo.TrendVo"> |