package com.yssh.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.yssh.entity.vo.WarningVo; @Mapper public interface WarningDetailMapper extends BaseMapper{ //List getRunTimeAlarmAnalyse(); //@Param("startTime") Date startTime, List selectWarningDetailByType(@Param("type") Integer type); List selectWarningDetailByMap(Map param); List> selectWarningDayCountByMap(Map param); }