You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.4 KiB
63 lines
2.4 KiB
package com.zc.business.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.zc.business.domain.DcGantryStatisticsData;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 这是一个接口的注释,用于描述门架数据统计的Mapper。
|
|
* 它继承了BaseMapper接口,并且指定DcGantryStatisticsData作为映射实体。
|
|
*
|
|
* @author xiepufeng 这是作者标注,用于指明代码的编写者。
|
|
*/
|
|
@Mapper
|
|
public interface DcGantryStatisticsDataMapper extends BaseMapper<DcGantryStatisticsData> {
|
|
|
|
/**
|
|
* 插入或更新门架数据统计。
|
|
*
|
|
* @param gantryStatisticsData 门架数据统计对象,包含需要插入或更新的数据。
|
|
* @return 返回一个布尔值,表示操作是否成功。true表示插入或更新成功,false表示失败。
|
|
*/
|
|
boolean insertOrUpdate(DcGantryStatisticsData gantryStatisticsData);
|
|
|
|
/**
|
|
* 批量插入或更新门架数据统计。
|
|
*
|
|
* @param dcGantryStatisticsDataList 门架数据统计对象列表,包含需要插入或更新的数据。
|
|
* @return 返回一个整数,表示插入或更新操作影响的行数。
|
|
*/
|
|
int insertOrUpdateBatch(List<DcGantryStatisticsData> dcGantryStatisticsDataList);
|
|
|
|
/**
|
|
* 获取最大的统计日期。
|
|
*
|
|
* @return 返回最大的统计日期。
|
|
*/
|
|
Date getMaxStatisticalDate();
|
|
|
|
/**
|
|
* 全路段双向实时车流量
|
|
*/
|
|
List<Map<String, String>> realTimeTrafficFlow(@Param("startDate") String startDate, @Param("direction")String direction, @Param("periodType")String periodType );
|
|
|
|
List<Map<String, Object>> trafficPeriodAnalysis(@Param("startDate") String startDate, @Param("direction")String direction, @Param("periodType")String periodType);
|
|
|
|
/**
|
|
* 交通流统计 列表
|
|
* @param startDate
|
|
* @param endDate
|
|
* @param direction
|
|
* @param periodType
|
|
* @return
|
|
*/
|
|
List<Map<String, String>> trafficFlowStatistics(@Param("startDate")String startDate, @Param("endDate")String endDate, @Param("direction")String direction, @Param("periodType")String periodType);
|
|
|
|
List<Map<String, String>> sectionTrafficRanking(@Param("startDate")String startDate, @Param("direction")String direction, @Param("periodType")String periodType);
|
|
}
|
|
|
|
|