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 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 selectTimeList(); /** * 批量插入 * * @param * @return 结果 */ public int batchInsert(List dcSdhsEventList); boolean deleteByTimeRange(@Param("startTime") String startTime,@Param("endTime") String endTime); List> selectRegionAnalysis(@Param("type") String type,@Param("thisTime") String thisTime, @Param("lastTime") String lastTime); List selectStationAnalysis(@Param("type") String type,@Param("time") String time); List> selectAccidentType(@Param("type") String type,@Param("thisTime") String thisTime, @Param("lastTime") String lastTime); List getDataCalendar(@Param("month") String month); /** * 查询事故模型分析 * * @param type 事故类型 * @param time 时间范围 * @return 事故模型分析事件列表 */ List selectAccidentModelAnalysis(@Param("type") String type, @Param("time") String time); }