package com.ycl.service.trend; import com.ycl.dto.trend.TrendAnalysisParam; import com.ycl.vo.TrendAnalysisVo; import com.ycl.vo.TrendVo; import java.util.List; public interface TrendAnalysisService { List list(TrendAnalysisParam trendAnalysisParam, Integer pageSize, Integer pageNum); List queryListByCount(TrendAnalysisParam trendAnalysisParam, Integer pageSize, Integer pageNum); List queryPointInfo(String longitude, String latitude); TrendAnalysisVo queryPointInfoByTime(Long pointId, String startTime, String endTime); }