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.DcGantryMetricsStatisticsData;
|
|
|
|
import com.zc.business.domain.DcRoadSectionCongestion;
|
|
|
|
import com.zc.common.core.httpclient.exception.HttpException;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface IDcTrafficStatisticsService {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取在途车辆流量(分车型)
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取门架指标数据
|
|
|
|
*/
|
|
|
|
JSONArray gantryMetrics(String startTime, String endTime) throws HttpException, IOException;
|
|
|
|
|
|
|
|
}
|