123456789101112131415161718192021222324252627282930313233 |
- package com.bizmatics.service;
- import com.bizmatics.model.AlarmPower;
- import com.bizmatics.common.mvc.base.CrudService;
- import com.bizmatics.service.vo.CommonIcoVO;
- import com.bizmatics.service.vo.CommonTotalVO;
- import java.util.Date;
- import java.util.List;
- /**
- * <p>
- * 电力告警 服务类
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- public interface AlarmPowerService extends CrudService<AlarmPower> {
- /**
- * 告警总数和未处理告警总数
- * @return
- */
- List<CommonTotalVO> selectCount();
- /**
- * 告警趋势图
- * @return
- */
- List<CommonIcoVO> selectByDate(Date date,Integer siteId);
- }
|