package com.zc.business.service; import com.zc.business.domain.DcEventType; import com.zc.business.domain.DcWarning; import java.util.HashMap; import java.util.List; /** * @author 王思祥 * @ClassName IDCPerceivedEventsWarningService */ public interface IDCPerceivedEventsWarningService { //查询预警表所有感知事件的数量 int perceivedEventsWarningNum(); //感知事件类型 List selectEventTypeList(); //查询预警感知事件类型 List> selectWarningTypeList(); //根据类型查询预计事件 List selectPerceivedEventsList(DcWarning dcWarning); }