TExceptionLogMapper.java 635 B

1234567891011121314151617181920212223242526272829
  1. package com.sckj.warn.mapper;
  2. import com.sckj.common.core.basics.IBaseMapper;
  3. import com.sckj.warn.dto.WarnDTO;
  4. import com.sckj.warn.entity.TExceptionLog;
  5. import com.sckj.warn.vo.TExceptionLogExportVo;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import java.util.List;
  8. import java.util.Map;
  9. /**
  10. * 异常情况记录Mapper
  11. * @author zhanghao
  12. */
  13. @Mapper
  14. public interface TExceptionLogMapper extends IBaseMapper<TExceptionLog> {
  15. /***
  16. * 查询预警统计
  17. * @return
  18. */
  19. List<WarnDTO> selectWarnStats();
  20. /***
  21. * 导出
  22. * @return
  23. */
  24. List<TExceptionLogExportVo> exportExceptionLogList();
  25. }