package com.ycl.service.trend.impl;
|
|
|
import com.ycl.dto.trend.TrendAnalysisParam;
|
import com.ycl.mapper.trend.TrendAnalysisMapper;
|
import com.ycl.service.trend.TrendAnalysisService;
|
import com.ycl.vo.TrendVo;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
@Service
|
public class TrendAnalysisServiceImpl implements TrendAnalysisService {
|
|
|
@Autowired
|
TrendAnalysisMapper trendAnalysisMapper;
|
|
@Override
|
public List<TrendVo> list(TrendAnalysisParam trendAnalysisParam, Integer pageSize, Integer pageNum) {
|
return trendAnalysisMapper.selectTrendInfo(trendAnalysisParam);
|
}
|
|
@Override
|
public List<TrendVo> queryPointInfo(String id) {
|
return trendAnalysisMapper.selectTrendPointInfo(id);
|
}
|
|
}
|