1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.bizmatics.service;
- import com.bizmatics.common.core.bean.CommonPage;
- import com.bizmatics.model.AlarmPower;
- import com.bizmatics.common.mvc.base.CrudService;
- import com.bizmatics.service.vo.ApCountVO;
- import com.bizmatics.service.vo.CommonIcoVO;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 电力告警 服务类
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- public interface AlarmPowerService extends CrudService<AlarmPower> {
- /**
- * 告警总数和未处理告警总数
- * @return
- */
- ApCountVO selectCount(Integer siteId);
- /**
- * 告警趋势图
- * @return
- */
- List<CommonIcoVO> selectByDate(Integer days,Date endTime,Integer siteId);
- /**
- * list
- * @param startTime 开始时间
- * @param endTime 结束时间
- * @param status 状态
- * @param siteId 站点id
- * @return
- */
- CommonPage<AlarmPower> page(Date startTime, Date endTime, Integer status, Integer siteId, Integer current, Integer size);
- }
|