| | |
| | | public interface MonitorPointService extends IService<MonitorPoint> { |
| | | |
| | | /** |
| | | * @Description: 根据组织id和地区码查询站点和设备 |
| | | * @Description: 根据组织id和地区码(非必须条件)查询站点和设备 |
| | | * @Param: [form] |
| | | * @return: java.util.List<com.moral.api.entity.MonitorPoint> |
| | | * @Author: 陈凯裕 |
| | |
| | | List<MonitorPoint> queryByOrgIdAndRegionCode(MonitorPointQueryForm form); |
| | | |
| | | /** |
| | | * @Description: 根据地区码查询国控站数据 |
| | | * @Param: [regionCode] |
| | | * @Description: 根据组织id,查询所有的站点 |
| | | * @Param: [organizationId] |
| | | * @return: java.util.List<com.moral.api.entity.MonitorPoint> |
| | | * @Author: 陈凯裕 |
| | | * @Date: 2021/7/16 |
| | | * @Date: 2021/9/26 |
| | | */ |
| | | List<MonitorPoint> queryStateControlStationByRegionCode(Integer regionCode); |
| | | List<MonitorPoint> queryAllMonitorPoints(Integer organizationId); |
| | | |
| | | |
| | | } |
| | | |