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.
92 lines
2.0 KiB
92 lines
2.0 KiB
package com.zc.business.service;
|
|
|
|
|
|
import com.zc.business.domain.DcEvent;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 事件信息Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-03
|
|
*/
|
|
public interface IDcEventService
|
|
{
|
|
/**
|
|
* 查询事件信息
|
|
*
|
|
* @param id 事件信息主键
|
|
* @return 事件信息
|
|
*/
|
|
public DcEvent selectDcEventById(String id);
|
|
|
|
/**
|
|
* 查询事件信息列表
|
|
*
|
|
* @param dcEvent 事件信息
|
|
* @return 事件信息集合
|
|
*/
|
|
public List<DcEvent> selectDcEventList(DcEvent dcEvent);
|
|
|
|
/**
|
|
* 新增事件信息
|
|
*
|
|
* @param dcEvent 事件信息
|
|
* @return 结果
|
|
*/
|
|
public int insertDcEvent(DcEvent dcEvent);
|
|
public int insertDcEventWarning(DcEvent dcEvent);
|
|
|
|
/**
|
|
* @Description 批量添加事件
|
|
*
|
|
* @author liuwenge
|
|
* @date 2024/3/18 8:43
|
|
* @param dcEventList
|
|
* @return int
|
|
*/
|
|
public boolean batchInsertDcEventWarning(List<DcEvent> dcEventList);
|
|
|
|
/**
|
|
* 修改事件信息
|
|
*
|
|
* @param dcEvent 事件信息
|
|
* @return 结果
|
|
*/
|
|
public int updateDcEvent(DcEvent dcEvent);
|
|
|
|
/**
|
|
* 批量删除事件信息
|
|
*
|
|
* @param ids 需要删除的事件信息主键集合
|
|
* @return 结果
|
|
*/
|
|
public int deleteDcEventByIds(int eventType,String[] ids);
|
|
|
|
/**
|
|
* 删除事件信息信息
|
|
*
|
|
* @param id 事件信息主键
|
|
* @return 结果
|
|
*/
|
|
public int deleteDcEventById(String id);
|
|
|
|
/**调度记录-事件列表 按时间展示交通事件。默认当天时间 。可查询条件 交通事件状态 ,时间范围
|
|
*
|
|
*/
|
|
List<DcEvent> selectDispatchEventList(DcEvent dcEvent);
|
|
|
|
/**
|
|
* 获取事件以及子类详细信息
|
|
* @param
|
|
* @param id
|
|
* @return
|
|
*/
|
|
DcEvent selectEventSubclassById(int eventType, String id);
|
|
|
|
Map<String,Object> selectCount();
|
|
|
|
List<DcEvent> eventPileNumberQueryEvent(Map<String, Object> parameter);
|
|
}
|
|
|