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.
96 lines
2.3 KiB
96 lines
2.3 KiB
package com.zc.business.mapper;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.zc.business.domain.DcSdhsEvent;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
/**
|
|
* 高速云事件Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-09-09
|
|
*/
|
|
public interface DcSdhsEventMapper
|
|
{
|
|
/**
|
|
* 查询高速云事件
|
|
*
|
|
* @param id 高速云事件主键
|
|
* @return 高速云事件
|
|
*/
|
|
public DcSdhsEvent selectDcSdhsEventById(Long id);
|
|
|
|
/**
|
|
* 查询高速云事件列表
|
|
*
|
|
* @param dcSdhsEvent 高速云事件
|
|
* @return 高速云事件集合
|
|
*/
|
|
List<DcSdhsEvent> selectDcSdhsEventList(DcSdhsEvent dcSdhsEvent);
|
|
|
|
/**
|
|
* 新增高速云事件
|
|
*
|
|
* @param dcSdhsEvent 高速云事件
|
|
* @return 结果
|
|
*/
|
|
int insertDcSdhsEvent(DcSdhsEvent dcSdhsEvent);
|
|
|
|
/**
|
|
* 修改高速云事件
|
|
*
|
|
* @param dcSdhsEvent 高速云事件
|
|
* @return 结果
|
|
*/
|
|
int updateDcSdhsEvent(DcSdhsEvent dcSdhsEvent);
|
|
|
|
/**
|
|
* 删除高速云事件
|
|
*
|
|
* @param id 高速云事件主键
|
|
* @return 结果
|
|
*/
|
|
int deleteDcSdhsEventById(Long id);
|
|
|
|
/**
|
|
* 批量删除高速云事件
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteDcSdhsEventByIds(Long[] ids);
|
|
|
|
List<Date> selectTimeList();
|
|
|
|
/**
|
|
* 批量插入
|
|
*
|
|
* @param
|
|
* @return 结果
|
|
*/
|
|
public int batchInsert(List<DcSdhsEvent> dcSdhsEventList);
|
|
|
|
boolean deleteByTimeRange(@Param("startTime") String startTime,@Param("endTime") String endTime);
|
|
|
|
List<Map<String,Object>> selectRegionAnalysis(@Param("type") String type,@Param("thisTime") String thisTime, @Param("lastTime") String lastTime);
|
|
|
|
List<DcSdhsEvent> selectStationAnalysis(@Param("type") String type,@Param("time") String time);
|
|
|
|
List<Map<String,Object>> selectAccidentType(@Param("type") String type,@Param("thisTime") String thisTime, @Param("lastTime") String lastTime);
|
|
|
|
|
|
List<String> getDataCalendar(@Param("month") String month);
|
|
|
|
/**
|
|
* 查询事故模型分析
|
|
*
|
|
* @param type 事故类型
|
|
* @param time 时间范围
|
|
* @return 事故模型分析事件列表
|
|
*/
|
|
List<DcSdhsEvent> selectAccidentModelAnalysis(@Param("type") String type, @Param("time") String time);
|
|
|
|
}
|
|
|