1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ycl.mapper.apidata;
|
| import com.ycl.vo.cockpit.statisticsEvents.StatisticsEventsVO;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| public interface ApiDataMapper {
| List<StatisticsEventsVO.Top10VO> listTop10(String beginTime, String endTime);
|
| List<StatisticsEventsVO.ArithmeticVO> arithmeticEvent(@Param("streetId") Integer streetId, @Param("beginTime") String beginTime, @Param("endTime") String endTime);
|
| List<StatisticsEventsVO.LotVO> listLot(@Param("streetId") Integer streetId, @Param("beginTime") String beginTime, @Param("endTime") String endTime);
| }
|
|