|
|
@ -2,11 +2,14 @@ package com.zc.business.mapper; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
|
|
import com.zc.business.domain.DcTollStationStatisticsData; |
|
|
|
import com.zc.business.domain.DcTollStationStatisticsDataMap; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
/** |
|
|
|
* 这是一个接口的注释,用于描述收费站数据统计的Mapper。 |
|
|
@ -32,6 +35,6 @@ public interface DcTollStationStatisticsDataMapper extends BaseMapper<DcTollStat |
|
|
|
*/ |
|
|
|
Date getMaxStatisticalDate(); |
|
|
|
|
|
|
|
List<DcTollStationStatisticsData> TollBoothStatistics(@Param("startDate") String startDate, @Param("accessType") String accessType, @Param("periodType") String periodType); |
|
|
|
List<Map<String, String>> TollBoothStatistics(@Param("startDate") String startDate, @Param("accessType") String accessType, @Param("periodType") String periodType); |
|
|
|
} |
|
|
|
|
|
|
|