| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务类 |
| | | * 服务类 |
| | | * </p> |
| | | * |
| | | * @author moral |
| | |
| | | public interface GovMonitorPointService extends IService<GovMonitorPoint> { |
| | | |
| | | /** |
| | | * @Description: 根据地区码查询国控站以及国控站数据 |
| | | * @Param: [regionCode] |
| | | * @return: java.util.List<com.moral.api.entity.GovMonitorPoint> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/9/24 |
| | | */ |
| | | List<GovMonitorPoint> queryGovMonitorPointAndDataByRegionCode(Integer regionCode); |
| | | * @Description: 根据地区码查询国控站以及国控站数据 |
| | | * @Param: [regionCode, sensorCode] |
| | | * @return: java.util.List<com.moral.api.entity.GovMonitorPoint> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/9/24 |
| | | */ |
| | | List<GovMonitorPoint> queryGovMonitorPointAndDataByRegionCode(Integer regionCode, String sensorCode); |
| | | |
| | | /** |
| | | * @Description: 通过组织id获取国控站点列表 |
| | | * @Param: [map] |
| | | * @return: java.util.List<java.util.Map < java.lang.String, java.lang.Object>> |
| | | * @Author: lizijie |
| | | * @Date: 2021/9/23 15:32 |
| | | **/ |
| | | List<GovMonitorPoint> selectGovMonitorPointsByOrgid(Map map); |
| | | |
| | | /** |
| | | * @Description: 通过guid和组织id获取绑定该站点设备的平均数据 |
| | | * @Param: [map] |
| | | * @return: java.util.Map<java.lang.String, java.lang.Object> |
| | | * @Author: lizijie |
| | | * @Date: 2021/9/24 11:22 |
| | | **/ |
| | | Map<String, Object> queryGovMonitorPointHoutlyDatyByGuidsAndOrgid(Map map); |
| | | |
| | | List<Map<String, Object>> getGovMonitorPointsByOrganizationId(Integer organizationId); |
| | | |
| | | /** |
| | | * 获取国控站信息 |
| | | * @return |
| | | */ |
| | | List<GovMonitorPoint> selectPoint(); |
| | | } |