AlarmPowerService.java 652 B

123456789101112131415161718192021222324252627282930313233
  1. package com.bizmatics.service;
  2. import com.bizmatics.model.AlarmPower;
  3. import com.bizmatics.common.mvc.base.CrudService;
  4. import com.bizmatics.service.vo.CommonIcoVO;
  5. import com.bizmatics.service.vo.CommonTotalVO;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * 电力告警 服务类
  11. * </p>
  12. *
  13. * @author ya
  14. * @since 2021-07-07
  15. */
  16. public interface AlarmPowerService extends CrudService<AlarmPower> {
  17. /**
  18. * 告警总数和未处理告警总数
  19. * @return
  20. */
  21. List<CommonTotalVO> selectCount();
  22. /**
  23. * 告警趋势图
  24. * @return
  25. */
  26. List<CommonIcoVO> selectByDate(Date date,Integer siteId);
  27. }