济菏高速数据中心代码
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.
 
 
 
 
 

16 lines
526 B

package com.zc.business.service;
import com.zc.business.domain.DcStatisticsData;
import java.util.List;
public interface IDcTrafficStatisticsService {
/**
* 根据传入的统计请求数据,查询历史累计车流量数据。
*
* @param request 包含统计查询条件的DcStatisticsData对象,用于指定查询的历史流量数据的细节,如时间范围等。
* @return 返回一个DcStatisticsData列表。
*/
List<DcStatisticsData> historyFlow(DcStatisticsData request);
}