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<WarningVo> getRunTimeAlarmAnalyse();
|
|
//@Param("startTime") Date startTime,
|
List<WarningVo> selectWarningDetailByType(@Param("type") Integer type);
|
|
List<WarningVo> selectWarningDetailByMap(Map<String, Object> param);
|
|
List<Map<String, Object>> selectWarningDayCountByMap(Map<String, Object> param);
|
}
|