TExceptionLogMapper.java 974 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.validate.TIronExceptionSearchScreenValidate;
  6. import com.sckj.warn.vo.TExceptionLogBigScreenVo;
  7. import com.sckj.warn.vo.TExceptionLogExportVo;
  8. import org.apache.ibatis.annotations.Mapper;
  9. import java.util.List;
  10. /**
  11. * 异常情况记录Mapper
  12. * @author zhanghao
  13. */
  14. @Mapper
  15. public interface TExceptionLogMapper extends IBaseMapper<TExceptionLog> {
  16. /***
  17. * 查询预警统计
  18. * @return
  19. */
  20. List<WarnDTO> selectWarnStats();
  21. /***
  22. * 导出
  23. * @return
  24. */
  25. List<TExceptionLogExportVo> exportExceptionLogList();
  26. /***
  27. * 导出
  28. * @return
  29. */
  30. List<TExceptionLogBigScreenVo> getRealTimeExceptionLogList(TExceptionLog exceptionLog);
  31. List<TExceptionLogBigScreenVo> getExceptionLogList(TIronExceptionSearchScreenValidate exceptionLog);
  32. }