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
1.5 KiB
63 lines
1.5 KiB
1 year ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||
|
|
||
|
/**
|
||
|
* @Description 交通事件统计Service接口
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 9:42
|
||
|
*/
|
||
|
public interface IDcTrafficIncidentsService {
|
||
|
|
||
|
/**
|
||
|
* @Description 首页-重点数据
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 10:09
|
||
|
* @param
|
||
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
||
|
*/
|
||
|
AjaxResult getKeyData();
|
||
|
|
||
|
/**
|
||
|
* @Description 首页-事件专题-根据事件类型获取事件列表
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 14:26
|
||
|
* @param eventType
|
||
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
||
|
*/
|
||
|
AjaxResult getEventListByType(String eventType);
|
||
|
|
||
|
/**
|
||
|
* @Description 首页-事件专题-根据事件id获取详情
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 14:43
|
||
|
* @param eventId
|
||
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
||
|
*/
|
||
|
AjaxResult getEventInfo(String eventId);
|
||
|
|
||
|
/**
|
||
|
* @Description 首页-状况统计-获取日、周、月、年的交通事件数量
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 15:08
|
||
|
* @param
|
||
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
||
|
*/
|
||
|
AjaxResult getTrafficIncidentsNum();
|
||
|
|
||
|
/**
|
||
|
* @Description 路网管控-事件管控分析-统计各类型的交通事件数量
|
||
|
*
|
||
|
* @author liuwenge
|
||
|
* @date 2024/1/13 15:46
|
||
|
* @param
|
||
|
* @return com.ruoyi.common.core.domain.AjaxResult
|
||
|
*/
|
||
|
AjaxResult getAllEventNum();
|
||
|
}
|