package com.ruoyi.project.dc.incidentReport.service; import java.util.List; import com.ruoyi.project.dc.incidentReport.domain.IncidentReport; /** * 事件上报Service接口 * * @author wm * @date 2020-12-07 */ public interface IIncidentReportService { /** * 查询事件上报 * * @param incidentReportId 事件上报ID * @return 事件上报 */ IncidentReport selectIncidentReportById(Long incidentReportId); /** * 查询事件上报列表 * * @param incidentReport 事件上报 * @return 事件上报集合 */ List selectIncidentReportList(IncidentReport incidentReport); /** * 新增事件上报 * * @param incidentReport 事件上报 * @return 结果 */ int insertIncidentReport(IncidentReport incidentReport); /** * 修改事件上报 * * @param incidentReport 事件上报 * @return 结果 */ int updateIncidentReport(IncidentReport incidentReport); /** * 批量删除事件上报 * * @param ids 需要删除的数据ID * @return 结果 */ int deleteIncidentReportByIds(String ids); /** * 删除事件上报信息 * * @param incidentReportId 事件上报ID * @return 结果 */ int deleteIncidentReportById(Long incidentReportId); }