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.
|
|
|
package com.zc.business.service;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
|
import com.zc.business.domain.DcRoadSectionCongestion;
|
|
|
|
import com.zc.business.domain.DcStatisticsData;
|
|
|
|
import com.zc.common.core.httpclient.exception.HttpException;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
public interface IDcTrafficStatisticsService {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据传入的统计请求数据,查询历史累计车流量数据。
|
|
|
|
*
|
|
|
|
* @param request 包含统计查询条件的DcStatisticsData对象,用于指定查询的历史流量数据的细节,如时间范围等。
|
|
|
|
* @return 返回一个DcStatisticsData列表。
|
|
|
|
*/
|
|
|
|
List<DcStatisticsData> historyFlow(DcStatisticsData request);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取在途车辆流量(分车型)
|
|
|
|
*/
|
|
|
|
JSONArray vehiclesInTransit() throws HttpException, IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 在途车路段门架平均车速
|
|
|
|
*/
|
|
|
|
JSONArray currentAverageSpeed() throws IOException, HttpException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取当前拥堵事件信息
|
|
|
|
*/
|
|
|
|
JSONArray currentEventCongested() throws IOException, HttpException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 路段拥堵信息
|
|
|
|
*/
|
|
|
|
List<DcRoadSectionCongestion> currentSectionCongested() throws HttpException, IOException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取车道占有率信息
|
|
|
|
*/
|
|
|
|
JSONArray laneOccupancy(String startDate, String endDate) throws HttpException, IOException;
|
|
|
|
}
|