| 1234567891011121314151617181920212223242526272829303132 |
- package com.chinaitop.depot.sptData.service;
- import java.util.Map;
- import com.chinaitop.depot.sptData.model.SptDataVO;
- import com.github.pagehelper.PageInfo;
- public interface SptService {
- /**
- * 获取市平台摄像头故障数接口数据
- * @param pageNum
- * @param pageSize
- * @param kqmc 库区名称
- * @param bjsj 报警时间
- * @return
- * @throws Exception
- */
- SptDataVO getSxtgzsList(Integer pageNum, Integer pageSize, String kqmc, String bjsj) throws Exception;
- /**
- * 获取市平台测温点故障数接口数据
- * @param pageNum
- * @param pageSize
- * @param kqmc 库区名称
- * @param bjsj 报警时间
- * @return
- * @throws Exception
- */
- SptDataVO getCwdgzsList(Integer pageNum, Integer pageSize, String kqmc, String bjsj) throws Exception;
- }
|