| | |
| | | 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); |
| | | } |